]> git.sesse.net Git - ccbs/blob - sql/ex-songlist.sql
Implement a simple priority system.
[ccbs] / sql / ex-songlist.sql
1 begin;
2 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, '1998' AS title, 'NAOKI' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('1998') NOT IN ( SELECT LOWER(title) FROM songs );
3 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('1998') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
4 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('1998')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
5 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('1998')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
6 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('1998')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
7 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('1998')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
8 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('1998')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
9 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('1998')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
10 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('1998')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
11 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'bag' AS title, 'RevenG' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('bag') NOT IN ( SELECT LOWER(title) FROM songs );
12 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('bag') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
13 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('bag')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
14 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('bag')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
15 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('bag')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
16 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('bag')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',10);
17 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('bag')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
18 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('bag')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',8);
19 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('bag')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',10);
20 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'BURNIN\' THE FLOOR (MOMO MIX)' AS title, 'NAOKI' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('BURNIN\' THE FLOOR (MOMO MIX)') NOT IN ( SELECT LOWER(title) FROM songs );
21 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('BURNIN\' THE FLOOR (MOMO MIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
22 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BURNIN\' THE FLOOR (MOMO MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
23 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BURNIN\' THE FLOOR (MOMO MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
24 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BURNIN\' THE FLOOR (MOMO MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
25 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BURNIN\' THE FLOOR (MOMO MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
26 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BURNIN\' THE FLOOR (MOMO MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
27 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BURNIN\' THE FLOOR (MOMO MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
28 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BURNIN\' THE FLOOR (MOMO MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
29 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'CARTOON HEROES (Speedy Mix)' AS title, 'BARBIE YOUNG' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('CARTOON HEROES (Speedy Mix)') NOT IN ( SELECT LOWER(title) FROM songs );
30 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('CARTOON HEROES (Speedy Mix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
31 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CARTOON HEROES (Speedy Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
32 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CARTOON HEROES (Speedy Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
33 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CARTOON HEROES (Speedy Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
34 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CARTOON HEROES (Speedy Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
35 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CARTOON HEROES (Speedy Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
36 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CARTOON HEROES (Speedy Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
37 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CARTOON HEROES (Speedy Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
38 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'CRASH!' AS title, 'Mr. BRIAN & THE FINAL BAND' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('CRASH!') NOT IN ( SELECT LOWER(title) FROM songs );
39 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('CRASH!') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
40 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CRASH!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',2);
41 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CRASH!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
42 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CRASH!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
43 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CRASH!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
44 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CRASH!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
45 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CRASH!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
46 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CRASH!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
47 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Dance Dance Revolution' AS title, 'DDR ALL STARS' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Dance Dance Revolution') NOT IN ( SELECT LOWER(title) FROM songs );
48 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Dance Dance Revolution') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
49 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Dance Dance Revolution')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',3);
50 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Dance Dance Revolution')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
51 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Dance Dance Revolution')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
52 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Dance Dance Revolution')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
53 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Dance Dance Revolution')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',9);
54 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'GRADUATION ~Each Tomorrow~' AS title, 'Be For U' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('GRADUATION ~Each Tomorrow~') NOT IN ( SELECT LOWER(title) FROM songs );
55 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('GRADUATION ~Each Tomorrow~') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
56 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GRADUATION ~Each Tomorrow~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
57 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GRADUATION ~Each Tomorrow~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
58 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GRADUATION ~Each Tomorrow~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
59 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GRADUATION ~Each Tomorrow~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
60 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GRADUATION ~Each Tomorrow~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
61 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GRADUATION ~Each Tomorrow~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
62 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GRADUATION ~Each Tomorrow~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
63 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'HYPER EUROBEAT' AS title, 'NAOKI feat. DDR ALL STARS' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('HYPER EUROBEAT') NOT IN ( SELECT LOWER(title) FROM songs );
64 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('HYPER EUROBEAT') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
65 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HYPER EUROBEAT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
66 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HYPER EUROBEAT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
67 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HYPER EUROBEAT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',4);
68 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HYPER EUROBEAT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
69 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HYPER EUROBEAT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
70 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HYPER EUROBEAT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
71 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HYPER EUROBEAT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
72 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'I DO I DO I DO' AS title, 'CREAMY' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('I DO I DO I DO') NOT IN ( SELECT LOWER(title) FROM songs );
73 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('I DO I DO I DO') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
74 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I DO I DO I DO')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
75 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I DO I DO I DO')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
76 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I DO I DO I DO')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
77 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I DO I DO I DO')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
78 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I DO I DO I DO')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
79 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I DO I DO I DO')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
80 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I DO I DO I DO')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
81 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'IRRESISTIBLEMENT' AS title, 'WILD SIDE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('IRRESISTIBLEMENT') NOT IN ( SELECT LOWER(title) FROM songs );
82 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('IRRESISTIBLEMENT') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
83 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('IRRESISTIBLEMENT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
84 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('IRRESISTIBLEMENT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
85 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('IRRESISTIBLEMENT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
86 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('IRRESISTIBLEMENT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
87 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('IRRESISTIBLEMENT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
88 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('IRRESISTIBLEMENT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
89 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('IRRESISTIBLEMENT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
90 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'LA COPA DE LA VIDA' AS title, 'PATRICK VICTORIO' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('LA COPA DE LA VIDA') NOT IN ( SELECT LOWER(title) FROM songs );
91 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('LA COPA DE LA VIDA') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
92 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LA COPA DE LA VIDA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
93 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LA COPA DE LA VIDA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
94 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LA COPA DE LA VIDA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
95 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LA COPA DE LA VIDA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
96 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LA COPA DE LA VIDA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
97 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LA COPA DE LA VIDA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
98 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LA COPA DE LA VIDA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
99 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'LOVE ❤ SHINE' AS title, 'Riyu Kosaka' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('LOVE ❤ SHINE') NOT IN ( SELECT LOWER(title) FROM songs );
100 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE ❤ SHINE') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
101 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE ❤ SHINE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
102 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE ❤ SHINE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
103 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE ❤ SHINE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',4);
104 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE ❤ SHINE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
105 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE ❤ SHINE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',8);
106 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE ❤ SHINE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
107 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE ❤ SHINE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',4);
108 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE ❤ SHINE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
109 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'MEMORIES' AS title, 'NAOKI feat. PAULA TERRY' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('MEMORIES') NOT IN ( SELECT LOWER(title) FROM songs );
110 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('MEMORIES') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
111 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MEMORIES')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
112 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MEMORIES')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
113 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MEMORIES')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
114 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MEMORIES')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
115 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MEMORIES')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
116 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MEMORIES')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
117 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MEMORIES')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
118 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'PARANOiA survivor' AS title, '270' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('PARANOiA survivor') NOT IN ( SELECT LOWER(title) FROM songs );
119 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA survivor') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
120 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA survivor')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',3);
121 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA survivor')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
122 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA survivor')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',8);
123 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA survivor')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',10);
124 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA survivor')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',6);
125 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA survivor')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',8);
126 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA survivor')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',10);
127 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'PARANOiA survivor MAX' AS title, '290' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('PARANOiA survivor MAX') NOT IN ( SELECT LOWER(title) FROM songs );
128 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA survivor MAX') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
129 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA survivor MAX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',3);
130 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA survivor MAX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
131 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA survivor MAX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',8);
132 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA survivor MAX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',10);
133 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA survivor MAX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',10);
134 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA survivor MAX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',6);
135 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA survivor MAX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',8);
136 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA survivor MAX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',10);
137 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA survivor MAX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',10);
138 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'SENORITA (Speedy Mix)' AS title, 'JENNY ROM' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('SENORITA (Speedy Mix)') NOT IN ( SELECT LOWER(title) FROM songs );
139 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('SENORITA (Speedy Mix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
140 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SENORITA (Speedy Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
141 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SENORITA (Speedy Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
142 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SENORITA (Speedy Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
143 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SENORITA (Speedy Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
144 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SENORITA (Speedy Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
145 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SENORITA (Speedy Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
146 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SENORITA (Speedy Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
147 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'SPEED OVER BEETHOVEN' AS title, 'ROSE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('SPEED OVER BEETHOVEN') NOT IN ( SELECT LOWER(title) FROM songs );
148 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('SPEED OVER BEETHOVEN') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
149 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SPEED OVER BEETHOVEN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
150 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SPEED OVER BEETHOVEN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
151 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SPEED OVER BEETHOVEN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
152 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SPEED OVER BEETHOVEN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
153 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SPEED OVER BEETHOVEN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
154 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SPEED OVER BEETHOVEN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
155 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SPEED OVER BEETHOVEN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
156 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'TEARS' AS title, 'NAOKI underground feat. EK' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('TEARS') NOT IN ( SELECT LOWER(title) FROM songs );
157 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('TEARS') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
158 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TEARS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
159 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TEARS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
160 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TEARS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
161 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TEARS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
162 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TEARS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
163 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TEARS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
164 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TEARS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
165 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'The legend of MAX' AS title, 'ZZ' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('The legend of MAX') NOT IN ( SELECT LOWER(title) FROM songs );
166 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('The legend of MAX') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
167 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('The legend of MAX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',3);
168 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('The legend of MAX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',6);
169 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('The legend of MAX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',9);
170 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('The legend of MAX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',10);
171 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('The legend of MAX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',10);
172 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'TRIP MACHINE survivor' AS title, 'DE-SIRE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('TRIP MACHINE survivor') NOT IN ( SELECT LOWER(title) FROM songs );
173 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE survivor') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
174 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE survivor')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
175 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE survivor')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
176 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE survivor')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',8);
177 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE survivor')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
178 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE survivor')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',5);
179 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE survivor')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',8);
180 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE survivor')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
181 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'VANITY ANGEL' AS title, 'FIXX' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('VANITY ANGEL') NOT IN ( SELECT LOWER(title) FROM songs );
182 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('VANITY ANGEL') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
183 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('VANITY ANGEL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
184 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('VANITY ANGEL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
185 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('VANITY ANGEL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
186 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('VANITY ANGEL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
187 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('VANITY ANGEL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
188 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('VANITY ANGEL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
189 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('VANITY ANGEL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
190 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'WE ARE THE CHAMPIONS (Factory Team Remix)' AS title, 'LIVE 2 LOVE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('WE ARE THE CHAMPIONS (Factory Team Remix)') NOT IN ( SELECT LOWER(title) FROM songs );
191 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('WE ARE THE CHAMPIONS (Factory Team Remix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
192 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WE ARE THE CHAMPIONS (Factory Team Remix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
193 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WE ARE THE CHAMPIONS (Factory Team Remix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
194 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WE ARE THE CHAMPIONS (Factory Team Remix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
195 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WE ARE THE CHAMPIONS (Factory Team Remix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
196 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WE ARE THE CHAMPIONS (Factory Team Remix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
197 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WE ARE THE CHAMPIONS (Factory Team Remix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
198 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WE ARE THE CHAMPIONS (Factory Team Remix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
199 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'WE WILL ROCK YOU' AS title, 'HOUSE BOYZ' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('WE WILL ROCK YOU') NOT IN ( SELECT LOWER(title) FROM songs );
200 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('WE WILL ROCK YOU') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
201 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WE WILL ROCK YOU')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
202 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WE WILL ROCK YOU')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
203 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WE WILL ROCK YOU')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
204 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WE WILL ROCK YOU')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
205 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WE WILL ROCK YOU')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
206 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WE WILL ROCK YOU')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
207 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WE WILL ROCK YOU')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
208 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'AFRONOVA (FROM NONSTOP MEGAMIX)' AS title, 'RE-VENGE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('AFRONOVA (FROM NONSTOP MEGAMIX)') NOT IN ( SELECT LOWER(title) FROM songs );
209 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('AFRONOVA (FROM NONSTOP MEGAMIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
210 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AFRONOVA (FROM NONSTOP MEGAMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',8);
211 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AFRONOVA (FROM NONSTOP MEGAMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',8);
212 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'AM-3P (AM EAST mix)' AS title, 'KTZ' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('AM-3P (AM EAST mix)') NOT IN ( SELECT LOWER(title) FROM songs );
213 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('AM-3P (AM EAST mix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
214 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AM-3P (AM EAST mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',7);
215 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AM-3P (AM EAST mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',7);
216 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'B4U (B4 ZA BEAT MIX)' AS title, 'NAOKI' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('B4U (B4 ZA BEAT MIX)') NOT IN ( SELECT LOWER(title) FROM songs );
217 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('B4U (B4 ZA BEAT MIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
218 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('B4U (B4 ZA BEAT MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',7);
219 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('B4U (B4 ZA BEAT MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',7);
220 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'BRE∀K DOWN!' AS title, 'Be For U' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('BRE∀K DOWN!') NOT IN ( SELECT LOWER(title) FROM songs );
221 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('BRE∀K DOWN!') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
222 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRE∀K DOWN!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
223 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRE∀K DOWN!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
224 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRE∀K DOWN!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
225 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRE∀K DOWN!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
226 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRE∀K DOWN!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
227 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRE∀K DOWN!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
228 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'BRILLIANT 2U (K.O.G. G3 MIX)' AS title, 'NAOKI' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('BRILLIANT 2U (K.O.G. G3 MIX)') NOT IN ( SELECT LOWER(title) FROM songs );
229 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('BRILLIANT 2U (K.O.G. G3 MIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
230 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRILLIANT 2U (K.O.G. G3 MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',7);
231 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRILLIANT 2U (K.O.G. G3 MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',7);
232 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'BURNIN\' THE FLOOR (BLUE FIRE mix)' AS title, 'NAOKI' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('BURNIN\' THE FLOOR (BLUE FIRE mix)') NOT IN ( SELECT LOWER(title) FROM songs );
233 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('BURNIN\' THE FLOOR (BLUE FIRE mix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
234 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BURNIN\' THE FLOOR (BLUE FIRE mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',7);
235 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BURNIN\' THE FLOOR (BLUE FIRE mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',7);
236 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'CANDY❤' AS title, 'Riyu Kosaka' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('CANDY❤') NOT IN ( SELECT LOWER(title) FROM songs );
237 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('CANDY❤') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
238 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CANDY❤')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
239 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CANDY❤')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
240 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CANDY❤')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
241 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CANDY❤')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
242 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CANDY❤')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
243 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CANDY❤')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
244 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'CELEBRATE NITE (EURO TRANCE STYLE)' AS title, 'N.M.R.' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('CELEBRATE NITE (EURO TRANCE STYLE)') NOT IN ( SELECT LOWER(title) FROM songs );
245 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('CELEBRATE NITE (EURO TRANCE STYLE)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
246 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CELEBRATE NITE (EURO TRANCE STYLE)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',8);
247 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CELEBRATE NITE (EURO TRANCE STYLE)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',8);
248 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'D2R' AS title, 'NAOKI' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('D2R') NOT IN ( SELECT LOWER(title) FROM songs );
249 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('D2R') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
250 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('D2R')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
251 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('D2R')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
252 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('D2R')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
253 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('D2R')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
254 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('D2R')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
255 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('D2R')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
256 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'DESTINY' AS title, 'NAOKI feat.PAULA TERRY' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('DESTINY') NOT IN ( SELECT LOWER(title) FROM songs );
257 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('DESTINY') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
258 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DESTINY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
259 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DESTINY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
260 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DESTINY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
261 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DESTINY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
262 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DESTINY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
263 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DESTINY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
264 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'DIVE TO THE NIGHT' AS title, 'Riyu Kosaka' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('DIVE TO THE NIGHT') NOT IN ( SELECT LOWER(title) FROM songs );
265 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('DIVE TO THE NIGHT') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
266 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DIVE TO THE NIGHT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
267 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DIVE TO THE NIGHT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
268 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DIVE TO THE NIGHT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
269 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DIVE TO THE NIGHT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
270 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DIVE TO THE NIGHT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
271 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DIVE TO THE NIGHT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
272 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'DROP OUT (FROM NONSTOP MEGAMIX)' AS title, 'NW260' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('DROP OUT (FROM NONSTOP MEGAMIX)') NOT IN ( SELECT LOWER(title) FROM songs );
273 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP OUT (FROM NONSTOP MEGAMIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
274 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP OUT (FROM NONSTOP MEGAMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',9);
275 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP OUT (FROM NONSTOP MEGAMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',9);
276 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'DYNAMITE RAVE (B4 ZA BEAT MIX)' AS title, 'NAOKI' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('DYNAMITE RAVE (B4 ZA BEAT MIX)') NOT IN ( SELECT LOWER(title) FROM songs );
277 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('DYNAMITE RAVE (B4 ZA BEAT MIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
278 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DYNAMITE RAVE (B4 ZA BEAT MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',7);
279 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DYNAMITE RAVE (B4 ZA BEAT MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',9);
280 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'ECSTASY (midnight blue mix)' AS title, 'd-complex' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('ECSTASY (midnight blue mix)') NOT IN ( SELECT LOWER(title) FROM songs );
281 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('ECSTASY (midnight blue mix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
282 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ECSTASY (midnight blue mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',8);
283 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ECSTASY (midnight blue mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',8);
284 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'ever snow' AS title, 'YOMA KOMATSU' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('ever snow') NOT IN ( SELECT LOWER(title) FROM songs );
285 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('ever snow') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
286 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ever snow')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
287 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ever snow')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
288 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ever snow')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
289 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ever snow')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
290 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ever snow')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
291 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ever snow')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
292 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'FANTASY (LOCKOUT)' AS title, 'LOCKOUT' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('FANTASY (LOCKOUT)') NOT IN ( SELECT LOWER(title) FROM songs );
293 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('FANTASY (LOCKOUT)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
294 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('FANTASY (LOCKOUT)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
295 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('FANTASY (LOCKOUT)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
296 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('FANTASY (LOCKOUT)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',6);
297 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('FANTASY (LOCKOUT)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
298 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('FANTASY (LOCKOUT)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
299 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('FANTASY (LOCKOUT)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
300 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'HIGHER (next morning mix)' AS title, 'NM feat. SUNNY' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('HIGHER (next morning mix)') NOT IN ( SELECT LOWER(title) FROM songs );
301 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('HIGHER (next morning mix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
302 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HIGHER (next morning mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',7);
303 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HIGHER (next morning mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',7);
304 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'IT\'S RAINING MEN (Almighty Mix)' AS title, 'GERI HALLIWELL' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('IT\'S RAINING MEN (Almighty Mix)') NOT IN ( SELECT LOWER(title) FROM songs );
305 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('IT\'S RAINING MEN (Almighty Mix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
306 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('IT\'S RAINING MEN (Almighty Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
307 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('IT\'S RAINING MEN (Almighty Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
308 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('IT\'S RAINING MEN (Almighty Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
309 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('IT\'S RAINING MEN (Almighty Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
310 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('IT\'S RAINING MEN (Almighty Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
311 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('IT\'S RAINING MEN (Almighty Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
312 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Kakumei' AS title, 'dj TAKA with NAOKI' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Kakumei') NOT IN ( SELECT LOWER(title) FROM songs );
313 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Kakumei') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
314 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Kakumei')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
315 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Kakumei')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
316 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Kakumei')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
317 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Kakumei')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',8);
318 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Kakumei')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
319 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Kakumei')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
320 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Kakumei')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
321 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Kakumei')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',9);
322 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'LITTLE BOY (BOY ON BOY MIX)' AS title, 'CAPTAIN JACK' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('LITTLE BOY (BOY ON BOY MIX)') NOT IN ( SELECT LOWER(title) FROM songs );
323 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('LITTLE BOY (BOY ON BOY MIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
324 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LITTLE BOY (BOY ON BOY MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
325 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LITTLE BOY (BOY ON BOY MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
326 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LITTLE BOY (BOY ON BOY MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
327 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LITTLE BOY (BOY ON BOY MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
328 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LITTLE BOY (BOY ON BOY MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
329 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LITTLE BOY (BOY ON BOY MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
330 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'LIVING IN AMERICA' AS title, 'JOHN DESIRE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('LIVING IN AMERICA') NOT IN ( SELECT LOWER(title) FROM songs );
331 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('LIVING IN AMERICA') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
332 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LIVING IN AMERICA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
333 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LIVING IN AMERICA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
334 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LIVING IN AMERICA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
335 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LIVING IN AMERICA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
336 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LIVING IN AMERICA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
337 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LIVING IN AMERICA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
338 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'LONG TRAIN RUNNIN\'' AS title, 'BUS STOP' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('LONG TRAIN RUNNIN\'') NOT IN ( SELECT LOWER(title) FROM songs );
339 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('LONG TRAIN RUNNIN\'') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
340 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LONG TRAIN RUNNIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
341 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LONG TRAIN RUNNIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
342 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LONG TRAIN RUNNIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
343 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LONG TRAIN RUNNIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
344 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LONG TRAIN RUNNIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
345 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LONG TRAIN RUNNIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
346 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'MATSURI JAPAN (FROM NONSTOP MEGAMIX)' AS title, 'RE-VENGE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('MATSURI JAPAN (FROM NONSTOP MEGAMIX)') NOT IN ( SELECT LOWER(title) FROM songs );
347 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('MATSURI JAPAN (FROM NONSTOP MEGAMIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
348 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MATSURI JAPAN (FROM NONSTOP MEGAMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',8);
349 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MATSURI JAPAN (FROM NONSTOP MEGAMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',8);
350 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'MAXIMUM OVERDRIVE (KC Club Mix)' AS title, '2 UNLIMITED' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('MAXIMUM OVERDRIVE (KC Club Mix)') NOT IN ( SELECT LOWER(title) FROM songs );
351 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('MAXIMUM OVERDRIVE (KC Club Mix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
352 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAXIMUM OVERDRIVE (KC Club Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
353 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAXIMUM OVERDRIVE (KC Club Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',4);
354 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAXIMUM OVERDRIVE (KC Club Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
355 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAXIMUM OVERDRIVE (KC Club Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',1);
356 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAXIMUM OVERDRIVE (KC Club Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
357 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAXIMUM OVERDRIVE (KC Club Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
358 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'MAXX UNLIMITED' AS title, 'Z' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('MAXX UNLIMITED') NOT IN ( SELECT LOWER(title) FROM songs );
359 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('MAXX UNLIMITED') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
360 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAXX UNLIMITED')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',6);
361 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAXX UNLIMITED')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',8);
362 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAXX UNLIMITED')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',10);
363 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAXX UNLIMITED')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',6);
364 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAXX UNLIMITED')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',8);
365 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAXX UNLIMITED')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',10);
366 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'MY SUMMER LOVE (TOMMY\'S SMILE MIX)' AS title, 'MITSU-O! with GEILA' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('MY SUMMER LOVE (TOMMY\'S SMILE MIX)') NOT IN ( SELECT LOWER(title) FROM songs );
367 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('MY SUMMER LOVE (TOMMY\'S SMILE MIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
368 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MY SUMMER LOVE (TOMMY\'S SMILE MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',7);
369 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MY SUMMER LOVE (TOMMY\'S SMILE MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',7);
370 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'rain of sorrow' AS title, 'NM feat. EBONY FAY' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('rain of sorrow') NOT IN ( SELECT LOWER(title) FROM songs );
371 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('rain of sorrow') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
372 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('rain of sorrow')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
373 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('rain of sorrow')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
374 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('rain of sorrow')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
375 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('rain of sorrow')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
376 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('rain of sorrow')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
377 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('rain of sorrow')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
378 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Secret Rendez-vous' AS title, 'DIVAS' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Secret Rendez-vous') NOT IN ( SELECT LOWER(title) FROM songs );
379 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Secret Rendez-vous') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
380 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Secret Rendez-vous')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
381 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Secret Rendez-vous')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
382 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Secret Rendez-vous')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
383 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Secret Rendez-vous')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
384 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Secret Rendez-vous')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
385 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Secret Rendez-vous')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
386 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'SEXY PLANET (FROM NONSTOP MEGAMIX)' AS title, 'CRYSTAL ALIENS' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('SEXY PLANET (FROM NONSTOP MEGAMIX)') NOT IN ( SELECT LOWER(title) FROM songs );
387 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('SEXY PLANET (FROM NONSTOP MEGAMIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
388 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SEXY PLANET (FROM NONSTOP MEGAMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',7);
389 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SEXY PLANET (FROM NONSTOP MEGAMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',7);
390 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'SILENT HILL (3rd christmas mix)' AS title, 'THOMAS HOWARD' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('SILENT HILL (3rd christmas mix)') NOT IN ( SELECT LOWER(title) FROM songs );
391 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('SILENT HILL (3rd christmas mix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
392 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SILENT HILL (3rd christmas mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',7);
393 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SILENT HILL (3rd christmas mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',7);
394 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'STILL IN MY HEART (MOMO MIX)' AS title, 'NAOKI' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('STILL IN MY HEART (MOMO MIX)') NOT IN ( SELECT LOWER(title) FROM songs );
395 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('STILL IN MY HEART (MOMO MIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
396 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('STILL IN MY HEART (MOMO MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',8);
397 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('STILL IN MY HEART (MOMO MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',8);
398 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'SUPER STAR (FROM NONSTOP MEGAMIX)' AS title, 'D.J.RICH feat. TAILBROS.' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('SUPER STAR (FROM NONSTOP MEGAMIX)') NOT IN ( SELECT LOWER(title) FROM songs );
399 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('SUPER STAR (FROM NONSTOP MEGAMIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
400 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SUPER STAR (FROM NONSTOP MEGAMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',7);
401 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SUPER STAR (FROM NONSTOP MEGAMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',7);
402 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Sweet Sweet ❤ Magic' AS title, 'jun' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Sweet Sweet ❤ Magic') NOT IN ( SELECT LOWER(title) FROM songs );
403 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Sweet Sweet ❤ Magic') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
404 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Sweet Sweet ❤ Magic')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
405 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Sweet Sweet ❤ Magic')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
406 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Sweet Sweet ❤ Magic')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
407 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Sweet Sweet ❤ Magic')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
408 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Sweet Sweet ❤ Magic')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
409 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Sweet Sweet ❤ Magic')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
410 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'THE REFLEX' AS title, 'DURAN DURAN' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('THE REFLEX') NOT IN ( SELECT LOWER(title) FROM songs );
411 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('THE REFLEX') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
412 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('THE REFLEX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
413 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('THE REFLEX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
414 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('THE REFLEX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
415 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('THE REFLEX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
416 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('THE REFLEX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
417 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('THE REFLEX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
418 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'THERE YOU\'LL BE' AS title, 'DJ SPEEDO feat. ANGELICA' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('THERE YOU\'LL BE') NOT IN ( SELECT LOWER(title) FROM songs );
419 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('THERE YOU\'LL BE') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
420 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('THERE YOU\'LL BE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
421 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('THERE YOU\'LL BE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
422 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('THERE YOU\'LL BE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
423 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('THERE YOU\'LL BE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
424 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('THERE YOU\'LL BE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
425 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('THERE YOU\'LL BE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
426 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'TSUGARU' AS title, 'RevenG vs DE-SIRE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('TSUGARU') NOT IN ( SELECT LOWER(title) FROM songs );
427 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('TSUGARU') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
428 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TSUGARU')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
429 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TSUGARU')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
430 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TSUGARU')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
431 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TSUGARU')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
432 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TSUGARU')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
433 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TSUGARU')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
434 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'TSUGARU (APPLE MIX)' AS title, 'RevenG vs. DE-SIRE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('TSUGARU (APPLE MIX)') NOT IN ( SELECT LOWER(title) FROM songs );
435 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('TSUGARU (APPLE MIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
436 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TSUGARU (APPLE MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',9);
437 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TSUGARU (APPLE MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',8);
438 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'WAKA LAKA' AS title, 'JENNY ROM vs ZIPPERS' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('WAKA LAKA') NOT IN ( SELECT LOWER(title) FROM songs );
439 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('WAKA LAKA') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
440 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WAKA LAKA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
441 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WAKA LAKA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
442 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WAKA LAKA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
443 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WAKA LAKA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
444 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WAKA LAKA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
445 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WAKA LAKA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
446 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'WILD RUSH (FROM NONSTOP MEGAMIX)' AS title, 'FACTOR-X' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('WILD RUSH (FROM NONSTOP MEGAMIX)') NOT IN ( SELECT LOWER(title) FROM songs );
447 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('WILD RUSH (FROM NONSTOP MEGAMIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
448 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WILD RUSH (FROM NONSTOP MEGAMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',7);
449 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WILD RUSH (FROM NONSTOP MEGAMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',7);
450 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'CANDY★' AS title, 'Luv unlimited' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('CANDY★') NOT IN ( SELECT LOWER(title) FROM songs );
451 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('CANDY★') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
452 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CANDY★')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
453 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CANDY★')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
454 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CANDY★')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
455 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CANDY★')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
456 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CANDY★')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
457 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CANDY★')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
458 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'COW GIRL' AS title, 'BAMBEE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('COW GIRL') NOT IN ( SELECT LOWER(title) FROM songs );
459 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('COW GIRL') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
460 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('COW GIRL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
461 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('COW GIRL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
462 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('COW GIRL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
463 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('COW GIRL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
464 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('COW GIRL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',4);
465 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('COW GIRL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
466 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'DO YOU REMEMBER ME' AS title, 'JENNY' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('DO YOU REMEMBER ME') NOT IN ( SELECT LOWER(title) FROM songs );
467 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('DO YOU REMEMBER ME') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
468 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DO YOU REMEMBER ME')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
469 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DO YOU REMEMBER ME')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
470 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DO YOU REMEMBER ME')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
471 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DO YOU REMEMBER ME')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
472 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DO YOU REMEMBER ME')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
473 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DO YOU REMEMBER ME')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
474 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'exotic ethnic' AS title, 'RevenG' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('exotic ethnic') NOT IN ( SELECT LOWER(title) FROM songs );
475 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('exotic ethnic') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
476 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('exotic ethnic')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
477 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('exotic ethnic')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
478 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('exotic ethnic')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
479 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('exotic ethnic')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
480 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('exotic ethnic')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
481 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('exotic ethnic')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
482 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'FANTASY (MELISSA)' AS title, 'MELISSA' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('FANTASY (MELISSA)') NOT IN ( SELECT LOWER(title) FROM songs );
483 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('FANTASY (MELISSA)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
484 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('FANTASY (MELISSA)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
485 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('FANTASY (MELISSA)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
486 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('FANTASY (MELISSA)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
487 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('FANTASY (MELISSA)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',1);
488 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('FANTASY (MELISSA)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
489 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('FANTASY (MELISSA)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
490 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Firefly' AS title, 'Be For U' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Firefly') NOT IN ( SELECT LOWER(title) FROM songs );
491 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Firefly') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
492 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Firefly')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',1);
493 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Firefly')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
494 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Firefly')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
495 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Firefly')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
496 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Firefly')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
497 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Firefly')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
498 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'HIGHS OFF U (Scorccio XY Mix)' AS title, '4 REEEL' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('HIGHS OFF U (Scorccio XY Mix)') NOT IN ( SELECT LOWER(title) FROM songs );
499 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('HIGHS OFF U (Scorccio XY Mix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
500 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HIGHS OFF U (Scorccio XY Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',1);
501 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HIGHS OFF U (Scorccio XY Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
502 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HIGHS OFF U (Scorccio XY Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
503 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HIGHS OFF U (Scorccio XY Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
504 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HIGHS OFF U (Scorccio XY Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
505 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HIGHS OFF U (Scorccio XY Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
506 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'I\'M IN THE MOOD FOR DANCING' AS title, 'SHARON' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('I\'M IN THE MOOD FOR DANCING') NOT IN ( SELECT LOWER(title) FROM songs );
507 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('I\'M IN THE MOOD FOR DANCING') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
508 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I\'M IN THE MOOD FOR DANCING')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
509 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I\'M IN THE MOOD FOR DANCING')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
510 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I\'M IN THE MOOD FOR DANCING')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
511 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I\'M IN THE MOOD FOR DANCING')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
512 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I\'M IN THE MOOD FOR DANCING')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',4);
513 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I\'M IN THE MOOD FOR DANCING')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
514 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'LET\'S GROOVE' AS title, 'TIPS & TRICKS VS WISDOME' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('LET\'S GROOVE') NOT IN ( SELECT LOWER(title) FROM songs );
515 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('LET\'S GROOVE') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
516 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LET\'S GROOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
517 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LET\'S GROOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
518 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LET\'S GROOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',6);
519 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LET\'S GROOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
520 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LET\'S GROOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',4);
521 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LET\'S GROOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
522 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'LOVIN\' YOU (ROB SEARLE CLUB MIX)' AS title, 'VINYL BABY' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('LOVIN\' YOU (ROB SEARLE CLUB MIX)') NOT IN ( SELECT LOWER(title) FROM songs );
523 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVIN\' YOU (ROB SEARLE CLUB MIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
524 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVIN\' YOU (ROB SEARLE CLUB MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
525 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVIN\' YOU (ROB SEARLE CLUB MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
526 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVIN\' YOU (ROB SEARLE CLUB MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
527 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVIN\' YOU (ROB SEARLE CLUB MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
528 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVIN\' YOU (ROB SEARLE CLUB MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
529 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVIN\' YOU (ROB SEARLE CLUB MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
530 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'MAX 300' AS title, 'Ω' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('MAX 300') NOT IN ( SELECT LOWER(title) FROM songs );
531 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('MAX 300') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
532 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAX 300')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',6);
533 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAX 300')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',8);
534 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAX 300')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',10);
535 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAX 300')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',6);
536 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAX 300')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',8);
537 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAX 300')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',10);
538 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'MIRACLE' AS title, 'ST. JANNARO' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('MIRACLE') NOT IN ( SELECT LOWER(title) FROM songs );
539 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('MIRACLE') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
540 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MIRACLE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
541 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MIRACLE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
542 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MIRACLE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
543 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MIRACLE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
544 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MIRACLE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
545 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MIRACLE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
546 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'MY SWEET DARLIN\'' AS title, 'WILDSIDE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('MY SWEET DARLIN\'') NOT IN ( SELECT LOWER(title) FROM songs );
547 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('MY SWEET DARLIN\'') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
548 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MY SWEET DARLIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
549 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MY SWEET DARLIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',4);
550 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MY SWEET DARLIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
551 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MY SWEET DARLIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
552 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MY SWEET DARLIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
553 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MY SWEET DARLIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
554 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'NORI NORI NORI' AS title, 'JUDY CRYSTAL' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('NORI NORI NORI') NOT IN ( SELECT LOWER(title) FROM songs );
555 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('NORI NORI NORI') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
556 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('NORI NORI NORI')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
557 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('NORI NORI NORI')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
558 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('NORI NORI NORI')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
559 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('NORI NORI NORI')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
560 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('NORI NORI NORI')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
561 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('NORI NORI NORI')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
562 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'ORDINARY WORLD' AS title, 'AURORA featuring NAIMEE COLEMAN' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('ORDINARY WORLD') NOT IN ( SELECT LOWER(title) FROM songs );
563 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('ORDINARY WORLD') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
564 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ORDINARY WORLD')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',1);
565 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ORDINARY WORLD')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',4);
566 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ORDINARY WORLD')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
567 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ORDINARY WORLD')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
568 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ORDINARY WORLD')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
569 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ORDINARY WORLD')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
570 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'SO DEEP (PERFECT SPHERE REMIX)' AS title, 'SILVERTEAR' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('SO DEEP (PERFECT SPHERE REMIX)') NOT IN ( SELECT LOWER(title) FROM songs );
571 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('SO DEEP (PERFECT SPHERE REMIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
572 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SO DEEP (PERFECT SPHERE REMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
573 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SO DEEP (PERFECT SPHERE REMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
574 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SO DEEP (PERFECT SPHERE REMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
575 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SO DEEP (PERFECT SPHERE REMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
576 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SO DEEP (PERFECT SPHERE REMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
577 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SO DEEP (PERFECT SPHERE REMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
578 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'SOBAKASU FRECKLES' AS title, 'TIGGY' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('SOBAKASU FRECKLES') NOT IN ( SELECT LOWER(title) FROM songs );
579 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('SOBAKASU FRECKLES') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
580 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SOBAKASU FRECKLES')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
581 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SOBAKASU FRECKLES')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
582 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SOBAKASU FRECKLES')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
583 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SOBAKASU FRECKLES')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
584 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SOBAKASU FRECKLES')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
585 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SOBAKASU FRECKLES')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
586 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'SOMEWHERE OVER THE RAINBOW' AS title, 'COSMIC GATE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('SOMEWHERE OVER THE RAINBOW') NOT IN ( SELECT LOWER(title) FROM songs );
587 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('SOMEWHERE OVER THE RAINBOW') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
588 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SOMEWHERE OVER THE RAINBOW')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
589 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SOMEWHERE OVER THE RAINBOW')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
590 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SOMEWHERE OVER THE RAINBOW')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
591 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SOMEWHERE OVER THE RAINBOW')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
592 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SOMEWHERE OVER THE RAINBOW')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
593 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SOMEWHERE OVER THE RAINBOW')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
594 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'TELEPHONE OPERATOR (Club MIX)' AS title, 'SHELLEY PETER' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('TELEPHONE OPERATOR (Club MIX)') NOT IN ( SELECT LOWER(title) FROM songs );
595 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('TELEPHONE OPERATOR (Club MIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
596 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TELEPHONE OPERATOR (Club MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
597 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TELEPHONE OPERATOR (Club MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
598 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TELEPHONE OPERATOR (Club MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
599 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TELEPHONE OPERATOR (Club MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
600 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TELEPHONE OPERATOR (Club MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
601 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TELEPHONE OPERATOR (Club MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
602 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'The Centre Of The Heart (STONEBRIDGE CLUBMIX)' AS title, 'Roxette' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('The Centre Of The Heart (STONEBRIDGE CLUBMIX)') NOT IN ( SELECT LOWER(title) FROM songs );
603 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('The Centre Of The Heart (STONEBRIDGE CLUBMIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
604 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('The Centre Of The Heart (STONEBRIDGE CLUBMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
605 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('The Centre Of The Heart (STONEBRIDGE CLUBMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
606 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('The Centre Of The Heart (STONEBRIDGE CLUBMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
607 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('The Centre Of The Heart (STONEBRIDGE CLUBMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
608 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('The Centre Of The Heart (STONEBRIDGE CLUBMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
609 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('The Centre Of The Heart (STONEBRIDGE CLUBMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
610 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'true... ~radio edit~' AS title, 'Riyu Kosaka' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('true... ~radio edit~') NOT IN ( SELECT LOWER(title) FROM songs );
611 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('true... ~radio edit~') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
612 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('true... ~radio edit~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
613 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('true... ~radio edit~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
614 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('true... ~radio edit~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
615 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('true... ~radio edit~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
616 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('true... ~radio edit~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
617 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('true... ~radio edit~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
618 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'true... ~trance sunrise mix~' AS title, 'Riyu Kosaka' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('true... ~trance sunrise mix~') NOT IN ( SELECT LOWER(title) FROM songs );
619 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('true... ~trance sunrise mix~') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
620 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('true... ~trance sunrise mix~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
621 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('true... ~trance sunrise mix~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
622 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('true... ~trance sunrise mix~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
623 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('true... ~trance sunrise mix~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
624 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('true... ~trance sunrise mix~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
625 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('true... ~trance sunrise mix~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
626 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'TWILIGHT ZONE (R-C Extended Club MIX)' AS title, '2 UNLIMITED' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('TWILIGHT ZONE (R-C Extended Club MIX)') NOT IN ( SELECT LOWER(title) FROM songs );
627 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('TWILIGHT ZONE (R-C Extended Club MIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
628 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TWILIGHT ZONE (R-C Extended Club MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
629 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TWILIGHT ZONE (R-C Extended Club MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
630 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TWILIGHT ZONE (R-C Extended Club MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
631 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TWILIGHT ZONE (R-C Extended Club MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
632 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TWILIGHT ZONE (R-C Extended Club MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
633 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TWILIGHT ZONE (R-C Extended Club MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
634 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'WITCH DOCTOR (GIANTS TOONS VERSION)' AS title, 'CARTOONS' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('WITCH DOCTOR (GIANTS TOONS VERSION)') NOT IN ( SELECT LOWER(title) FROM songs );
635 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('WITCH DOCTOR (GIANTS TOONS VERSION)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
636 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WITCH DOCTOR (GIANTS TOONS VERSION)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
637 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WITCH DOCTOR (GIANTS TOONS VERSION)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',4);
638 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WITCH DOCTOR (GIANTS TOONS VERSION)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
639 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WITCH DOCTOR (GIANTS TOONS VERSION)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
640 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WITCH DOCTOR (GIANTS TOONS VERSION)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
641 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WITCH DOCTOR (GIANTS TOONS VERSION)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
642 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'WWW.BLONDE GIRL (MOMO MIX)' AS title, 'JENNY ROM' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('WWW.BLONDE GIRL (MOMO MIX)') NOT IN ( SELECT LOWER(title) FROM songs );
643 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('WWW.BLONDE GIRL (MOMO MIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
644 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WWW.BLONDE GIRL (MOMO MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',1);
645 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WWW.BLONDE GIRL (MOMO MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',4);
646 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WWW.BLONDE GIRL (MOMO MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
647 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WWW.BLONDE GIRL (MOMO MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
648 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WWW.BLONDE GIRL (MOMO MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',4);
649 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WWW.BLONDE GIRL (MOMO MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
650 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'YOZORA NO MUKO' AS title, 'EUROBEAT LOVERS' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('YOZORA NO MUKO') NOT IN ( SELECT LOWER(title) FROM songs );
651 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('YOZORA NO MUKO') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
652 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('YOZORA NO MUKO')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
653 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('YOZORA NO MUKO')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
654 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('YOZORA NO MUKO')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
655 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('YOZORA NO MUKO')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
656 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('YOZORA NO MUKO')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',4);
657 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('YOZORA NO MUKO')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
658 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'CAN\'T STOP FALLIN\' IN LOVE (SPEED MIX)' AS title, 'NAOKI' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('CAN\'T STOP FALLIN\' IN LOVE (SPEED MIX)') NOT IN ( SELECT LOWER(title) FROM songs );
659 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('CAN\'T STOP FALLIN\' IN LOVE (SPEED MIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
660 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CAN\'T STOP FALLIN\' IN LOVE (SPEED MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
661 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CAN\'T STOP FALLIN\' IN LOVE (SPEED MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
662 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CAN\'T STOP FALLIN\' IN LOVE (SPEED MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
663 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CAN\'T STOP FALLIN\' IN LOVE (SPEED MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
664 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CAN\'T STOP FALLIN\' IN LOVE (SPEED MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
665 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CAN\'T STOP FALLIN\' IN LOVE (SPEED MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
666 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'ECSTASY' AS title, 'd-complex' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('ECSTASY') NOT IN ( SELECT LOWER(title) FROM songs );
667 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('ECSTASY') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
668 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ECSTASY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
669 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ECSTASY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
670 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ECSTASY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
671 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ECSTASY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
672 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ECSTASY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
673 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ECSTASY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
674 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Healing Vision' AS title, 'DE-SIRE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Healing Vision') NOT IN ( SELECT LOWER(title) FROM songs );
675 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Healing Vision') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
676 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Healing Vision')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
677 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Healing Vision')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
678 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Healing Vision')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
679 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Healing Vision')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
680 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Healing Vision')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
681 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Healing Vision')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
682 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'INSERTiON' AS title, 'NAOKI underground' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('INSERTiON') NOT IN ( SELECT LOWER(title) FROM songs );
683 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('INSERTiON') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
684 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('INSERTiON')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
685 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('INSERTiON')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
686 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('INSERTiON')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
687 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('INSERTiON')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
688 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('INSERTiON')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
689 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('INSERTiON')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
690 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'PARANOiA ETERNAL' AS title, 'STM 200' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('PARANOiA ETERNAL') NOT IN ( SELECT LOWER(title) FROM songs );
691 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA ETERNAL') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
692 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA ETERNAL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
693 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA ETERNAL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
694 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA ETERNAL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
695 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA ETERNAL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',5);
696 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA ETERNAL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
697 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA ETERNAL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
698 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Remember You' AS title, 'NM feat.Julie' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Remember You') NOT IN ( SELECT LOWER(title) FROM songs );
699 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Remember You') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
700 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Remember You')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',1);
701 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Remember You')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',3);
702 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Remember You')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',5);
703 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Remember You')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',1);
704 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Remember You')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',3);
705 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Remember You')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',5);
706 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'STILL IN MY HEART' AS title, 'NAOKI' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('STILL IN MY HEART') NOT IN ( SELECT LOWER(title) FROM songs );
707 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('STILL IN MY HEART') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
708 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('STILL IN MY HEART')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
709 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('STILL IN MY HEART')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
710 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('STILL IN MY HEART')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
711 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('STILL IN MY HEART')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
712 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('STILL IN MY HEART')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
713 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('STILL IN MY HEART')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
714 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'B4U' AS title, 'NAOKI' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('B4U') NOT IN ( SELECT LOWER(title) FROM songs );
715 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('B4U') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
716 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('B4U')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
717 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('B4U')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
718 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('B4U')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
719 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('B4U')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
720 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('B4U')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
721 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('B4U')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
722 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'BABY BABY GIMME YOUR LOVE' AS title, 'DIVAS' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('BABY BABY GIMME YOUR LOVE') NOT IN ( SELECT LOWER(title) FROM songs );
723 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('BABY BABY GIMME YOUR LOVE') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
724 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BABY BABY GIMME YOUR LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',1);
725 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BABY BABY GIMME YOUR LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',3);
726 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BABY BABY GIMME YOUR LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',6);
727 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BABY BABY GIMME YOUR LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
728 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BABY BABY GIMME YOUR LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',4);
729 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BABY BABY GIMME YOUR LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',6);
730 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'BURNIN\' THE FLOOR' AS title, 'NAOKI' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('BURNIN\' THE FLOOR') NOT IN ( SELECT LOWER(title) FROM songs );
731 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('BURNIN\' THE FLOOR') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
732 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BURNIN\' THE FLOOR')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
733 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BURNIN\' THE FLOOR')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
734 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BURNIN\' THE FLOOR')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
735 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BURNIN\' THE FLOOR')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
736 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BURNIN\' THE FLOOR')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
737 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BURNIN\' THE FLOOR')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
738 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'HIGHER' AS title, 'NM feat. SUNNY' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('HIGHER') NOT IN ( SELECT LOWER(title) FROM songs );
739 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('HIGHER') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
740 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HIGHER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
741 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HIGHER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
742 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HIGHER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',6);
743 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HIGHER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
744 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HIGHER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
745 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HIGHER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
746 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'LOVE AGAIN TONIGHT (For Melissa MIX)' AS title, 'NAOKI feat. PAULA TERRY' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('LOVE AGAIN TONIGHT (For Melissa MIX)') NOT IN ( SELECT LOWER(title) FROM songs );
747 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE AGAIN TONIGHT (For Melissa MIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
748 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE AGAIN TONIGHT (For Melissa MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
749 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE AGAIN TONIGHT (For Melissa MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
750 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE AGAIN TONIGHT (For Melissa MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
751 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE AGAIN TONIGHT (For Melissa MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
752 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE AGAIN TONIGHT (For Melissa MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
753 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE AGAIN TONIGHT (For Melissa MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
754 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'MY SUMMER LOVE' AS title, 'MITSU-O! with GEILA' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('MY SUMMER LOVE') NOT IN ( SELECT LOWER(title) FROM songs );
755 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('MY SUMMER LOVE') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
756 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MY SUMMER LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
757 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MY SUMMER LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
758 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MY SUMMER LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
759 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MY SUMMER LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
760 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MY SUMMER LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
761 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MY SUMMER LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
762 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'ORION.78 (AMeuro-MIX)' AS title, 'RE-VENGE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('ORION.78 (AMeuro-MIX)') NOT IN ( SELECT LOWER(title) FROM songs );
763 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('ORION.78 (AMeuro-MIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
764 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ORION.78 (AMeuro-MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
765 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ORION.78 (AMeuro-MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
766 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ORION.78 (AMeuro-MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
767 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ORION.78 (AMeuro-MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
768 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ORION.78 (AMeuro-MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
769 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ORION.78 (AMeuro-MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
770 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'RHYTHM AND POLICE (K.O.G G3 Mix)' AS title, 'CJ CREW feat. CHRISTIAN D' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('RHYTHM AND POLICE (K.O.G G3 Mix)') NOT IN ( SELECT LOWER(title) FROM songs );
771 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('RHYTHM AND POLICE (K.O.G G3 Mix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
772 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('RHYTHM AND POLICE (K.O.G G3 Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
773 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('RHYTHM AND POLICE (K.O.G G3 Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
774 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('RHYTHM AND POLICE (K.O.G G3 Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
775 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('RHYTHM AND POLICE (K.O.G G3 Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
776 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('RHYTHM AND POLICE (K.O.G G3 Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
777 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('RHYTHM AND POLICE (K.O.G G3 Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
778 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'SAINT GOES MARCHING (REMIX)' AS title, 'THE SAINT' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('SAINT GOES MARCHING (REMIX)') NOT IN ( SELECT LOWER(title) FROM songs );
779 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('SAINT GOES MARCHING (REMIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
780 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SAINT GOES MARCHING (REMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
781 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SAINT GOES MARCHING (REMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
782 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SAINT GOES MARCHING (REMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
783 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SAINT GOES MARCHING (REMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
784 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SAINT GOES MARCHING (REMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
785 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SAINT GOES MARCHING (REMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
786 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'SYNCHRONIZED LOVE (Red Monster Hyper Mix)' AS title, 'JOE RINOIE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('SYNCHRONIZED LOVE (Red Monster Hyper Mix)') NOT IN ( SELECT LOWER(title) FROM songs );
787 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('SYNCHRONIZED LOVE (Red Monster Hyper Mix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
788 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SYNCHRONIZED LOVE (Red Monster Hyper Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
789 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SYNCHRONIZED LOVE (Red Monster Hyper Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
790 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SYNCHRONIZED LOVE (Red Monster Hyper Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
791 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SYNCHRONIZED LOVE (Red Monster Hyper Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
792 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SYNCHRONIZED LOVE (Red Monster Hyper Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
793 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SYNCHRONIZED LOVE (Red Monster Hyper Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
794 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'TRIP MACHINE CLIMAX' AS title, 'DE-SIRE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('TRIP MACHINE CLIMAX') NOT IN ( SELECT LOWER(title) FROM songs );
795 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE CLIMAX') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
796 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE CLIMAX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
797 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE CLIMAX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
798 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE CLIMAX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
799 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE CLIMAX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',5);
800 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE CLIMAX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
801 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE CLIMAX')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
802 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'AFRONOVA' AS title, 'RE-VENGE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('AFRONOVA') NOT IN ( SELECT LOWER(title) FROM songs );
803 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('AFRONOVA') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
804 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AFRONOVA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
805 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AFRONOVA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
806 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AFRONOVA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
807 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AFRONOVA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',6);
808 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AFRONOVA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
809 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AFRONOVA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
810 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'CAPTAIN JACK (GRANDALE REMIX)' AS title, 'CAPTAIN JACK' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('CAPTAIN JACK (GRANDALE REMIX)') NOT IN ( SELECT LOWER(title) FROM songs );
811 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('CAPTAIN JACK (GRANDALE REMIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
812 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CAPTAIN JACK (GRANDALE REMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
813 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CAPTAIN JACK (GRANDALE REMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
814 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CAPTAIN JACK (GRANDALE REMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
815 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CAPTAIN JACK (GRANDALE REMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',5);
816 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CAPTAIN JACK (GRANDALE REMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
817 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CAPTAIN JACK (GRANDALE REMIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
818 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'DAM DARIRAM' AS title, 'JOGA' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('DAM DARIRAM') NOT IN ( SELECT LOWER(title) FROM songs );
819 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('DAM DARIRAM') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
820 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DAM DARIRAM')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
821 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DAM DARIRAM')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
822 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DAM DARIRAM')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
823 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DAM DARIRAM')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',8);
824 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DAM DARIRAM')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
825 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DAM DARIRAM')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
826 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DAM DARIRAM')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
827 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DAM DARIRAM')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',8);
828 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'DEAD END' AS title, 'N & S' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('DEAD END') NOT IN ( SELECT LOWER(title) FROM songs );
829 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('DEAD END') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
830 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DEAD END')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
831 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DEAD END')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
832 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DEAD END')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
833 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DEAD END')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',6);
834 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DEAD END')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
835 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DEAD END')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
836 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'DYNAMITE RAVE' AS title, 'NAOKI' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('DYNAMITE RAVE') NOT IN ( SELECT LOWER(title) FROM songs );
837 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('DYNAMITE RAVE') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
838 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DYNAMITE RAVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
839 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DYNAMITE RAVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
840 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DYNAMITE RAVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
841 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DYNAMITE RAVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',9);
842 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DYNAMITE RAVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',5);
843 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DYNAMITE RAVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
844 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DYNAMITE RAVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
845 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DYNAMITE RAVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',8);
846 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'END OF THE CENTURY' AS title, 'NO. 9' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('END OF THE CENTURY') NOT IN ( SELECT LOWER(title) FROM songs );
847 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('END OF THE CENTURY') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
848 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('END OF THE CENTURY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
849 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('END OF THE CENTURY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
850 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('END OF THE CENTURY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
851 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('END OF THE CENTURY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',5);
852 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('END OF THE CENTURY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
853 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('END OF THE CENTURY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
854 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'gentle stress (AMD SEXUAL MIX)' AS title, 'MR. DOG feat. DJ Swan' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('gentle stress (AMD SEXUAL MIX)') NOT IN ( SELECT LOWER(title) FROM songs );
855 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('gentle stress (AMD SEXUAL MIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
856 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('gentle stress (AMD SEXUAL MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
857 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('gentle stress (AMD SEXUAL MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
858 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('gentle stress (AMD SEXUAL MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
859 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('gentle stress (AMD SEXUAL MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',5);
860 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('gentle stress (AMD SEXUAL MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
861 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('gentle stress (AMD SEXUAL MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
862 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'GRADIUSIC CYBER (AMD G5 MIX)' AS title, 'BIG-O feat. TAKA' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('GRADIUSIC CYBER (AMD G5 MIX)') NOT IN ( SELECT LOWER(title) FROM songs );
863 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('GRADIUSIC CYBER (AMD G5 MIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
864 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GRADIUSIC CYBER (AMD G5 MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
865 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GRADIUSIC CYBER (AMD G5 MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
866 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GRADIUSIC CYBER (AMD G5 MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
867 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GRADIUSIC CYBER (AMD G5 MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',5);
868 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GRADIUSIC CYBER (AMD G5 MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
869 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GRADIUSIC CYBER (AMD G5 MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
870 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Jam Jam Reggae (AMD SWING MIX)' AS title, 'Rice. C feat. Jam master 73' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Jam Jam Reggae (AMD SWING MIX)') NOT IN ( SELECT LOWER(title) FROM songs );
871 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Jam Jam Reggae (AMD SWING MIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
872 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Jam Jam Reggae (AMD SWING MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
873 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Jam Jam Reggae (AMD SWING MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
874 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Jam Jam Reggae (AMD SWING MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
875 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Jam Jam Reggae (AMD SWING MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
876 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Jam Jam Reggae (AMD SWING MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
877 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Jam Jam Reggae (AMD SWING MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
878 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'La Senorita' AS title, 'CAPTAIN. T' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('La Senorita') NOT IN ( SELECT LOWER(title) FROM songs );
879 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('La Senorita') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
880 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('La Senorita')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
881 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('La Senorita')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
882 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('La Senorita')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
883 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('La Senorita')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
884 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('La Senorita')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
885 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('La Senorita')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
886 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'LUV TO ME (AMD MIX)' AS title, 'DJ KAZU feat. Tiger YAMATO' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('LUV TO ME (AMD MIX)') NOT IN ( SELECT LOWER(title) FROM songs );
887 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('LUV TO ME (AMD MIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
888 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LUV TO ME (AMD MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
889 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LUV TO ME (AMD MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
890 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LUV TO ME (AMD MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
891 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LUV TO ME (AMD MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',5);
892 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LUV TO ME (AMD MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
893 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LUV TO ME (AMD MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
894 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'PARANOiA Rebirth' AS title, '190\'' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('PARANOiA Rebirth') NOT IN ( SELECT LOWER(title) FROM songs );
895 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA Rebirth') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
896 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA Rebirth')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',6);
897 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA Rebirth')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
898 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA Rebirth')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
899 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA Rebirth')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',6);
900 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA Rebirth')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',8);
901 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA Rebirth')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
902 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Silent Hill' AS title, 'THOMAS HOWARD' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Silent Hill') NOT IN ( SELECT LOWER(title) FROM songs );
903 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Silent Hill') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
904 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Silent Hill')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
905 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Silent Hill')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
906 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Silent Hill')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
907 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Silent Hill')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
908 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Silent Hill')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
909 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Silent Hill')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
910 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'AM-3P' AS title, 'KTz' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('AM-3P') NOT IN ( SELECT LOWER(title) FROM songs );
911 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('AM-3P') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
912 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AM-3P')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
913 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AM-3P')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
914 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AM-3P')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
915 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AM-3P')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',5);
916 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AM-3P')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
917 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AM-3P')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
918 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'BRILLIANT 2U' AS title, 'NAOKI' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('BRILLIANT 2U') NOT IN ( SELECT LOWER(title) FROM songs );
919 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('BRILLIANT 2U') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
920 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRILLIANT 2U')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
921 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRILLIANT 2U')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
922 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRILLIANT 2U')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',6);
923 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRILLIANT 2U')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',7);
924 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRILLIANT 2U')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
925 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRILLIANT 2U')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
926 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRILLIANT 2U')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
927 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRILLIANT 2U')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',8);
928 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'BRILLIANT 2U (Orchestra Groove)' AS title, 'NAOKI' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('BRILLIANT 2U (Orchestra Groove)') NOT IN ( SELECT LOWER(title) FROM songs );
929 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('BRILLIANT 2U (Orchestra Groove)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
930 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRILLIANT 2U (Orchestra Groove)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
931 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRILLIANT 2U (Orchestra Groove)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
932 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRILLIANT 2U (Orchestra Groove)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
933 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRILLIANT 2U (Orchestra Groove)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',8);
934 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRILLIANT 2U (Orchestra Groove)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
935 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRILLIANT 2U (Orchestra Groove)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
936 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRILLIANT 2U (Orchestra Groove)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
937 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BRILLIANT 2U (Orchestra Groove)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',8);
938 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'EL RITMO TROPICAL' AS title, 'DIXIES GANG' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('EL RITMO TROPICAL') NOT IN ( SELECT LOWER(title) FROM songs );
939 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('EL RITMO TROPICAL') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
940 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('EL RITMO TROPICAL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
941 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('EL RITMO TROPICAL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
942 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('EL RITMO TROPICAL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
943 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('EL RITMO TROPICAL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
944 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('EL RITMO TROPICAL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
945 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('EL RITMO TROPICAL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
946 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'GET UP\'N MOVE' AS title, 'S&K' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('GET UP\'N MOVE') NOT IN ( SELECT LOWER(title) FROM songs );
947 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('GET UP\'N MOVE') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
948 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GET UP\'N MOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
949 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GET UP\'N MOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
950 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GET UP\'N MOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
951 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GET UP\'N MOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',6);
952 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GET UP\'N MOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
953 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GET UP\'N MOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
954 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'I believe in miracles' AS title, 'HI-RISE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('I believe in miracles') NOT IN ( SELECT LOWER(title) FROM songs );
955 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('I believe in miracles') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
956 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I believe in miracles')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
957 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I believe in miracles')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
958 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I believe in miracles')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
959 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I believe in miracles')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',6);
960 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I believe in miracles')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
961 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I believe in miracles')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
962 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'IF YOU WERE HERE' AS title, 'JENNIFER' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('IF YOU WERE HERE') NOT IN ( SELECT LOWER(title) FROM songs );
963 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('IF YOU WERE HERE') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
964 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('IF YOU WERE HERE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
965 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('IF YOU WERE HERE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
966 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('IF YOU WERE HERE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
967 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('IF YOU WERE HERE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',6);
968 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('IF YOU WERE HERE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
969 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('IF YOU WERE HERE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
970 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'KEEP ON MOVIN\'' AS title, 'N.M.R.' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('KEEP ON MOVIN\'') NOT IN ( SELECT LOWER(title) FROM songs );
971 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('KEEP ON MOVIN\'') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
972 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('KEEP ON MOVIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
973 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('KEEP ON MOVIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
974 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('KEEP ON MOVIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',6);
975 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('KEEP ON MOVIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
976 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('KEEP ON MOVIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
977 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('KEEP ON MOVIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
978 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'PARANOiA MAX (DIRTY MIX)' AS title, '190' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('PARANOiA MAX (DIRTY MIX)') NOT IN ( SELECT LOWER(title) FROM songs );
979 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA MAX (DIRTY MIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
980 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA MAX (DIRTY MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',6);
981 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA MAX (DIRTY MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',8);
982 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA MAX (DIRTY MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
983 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA MAX (DIRTY MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',7);
984 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA MAX (DIRTY MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',8);
985 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA MAX (DIRTY MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
986 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'PUT YOUR FAITH IN ME' AS title, 'UZI-LAY' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('PUT YOUR FAITH IN ME') NOT IN ( SELECT LOWER(title) FROM songs );
987 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('PUT YOUR FAITH IN ME') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
988 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PUT YOUR FAITH IN ME')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
989 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PUT YOUR FAITH IN ME')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',4);
990 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PUT YOUR FAITH IN ME')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',6);
991 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PUT YOUR FAITH IN ME')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
992 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PUT YOUR FAITH IN ME')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
993 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PUT YOUR FAITH IN ME')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',6);
994 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'SP-TRIP MACHINE (JUNGLE MIX)' AS title, 'DE-SIRE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('SP-TRIP MACHINE (JUNGLE MIX)') NOT IN ( SELECT LOWER(title) FROM songs );
995 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('SP-TRIP MACHINE (JUNGLE MIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
996 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SP-TRIP MACHINE (JUNGLE MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',6);
997 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SP-TRIP MACHINE (JUNGLE MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
998 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SP-TRIP MACHINE (JUNGLE MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
999 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SP-TRIP MACHINE (JUNGLE MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',7);
1000 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SP-TRIP MACHINE (JUNGLE MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',8);
1001 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SP-TRIP MACHINE (JUNGLE MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1002 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'BUTTERFLY' AS title, 'SMILE.dk' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('BUTTERFLY') NOT IN ( SELECT LOWER(title) FROM songs );
1003 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('BUTTERFLY') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1004 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BUTTERFLY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1005 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BUTTERFLY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',4);
1006 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BUTTERFLY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',5);
1007 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BUTTERFLY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',8);
1008 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BUTTERFLY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1009 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BUTTERFLY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1010 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BUTTERFLY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',6);
1011 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BUTTERFLY')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',8);
1012 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'LET\'S GET DOWN' AS title, 'JT PLAYAZ' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('LET\'S GET DOWN') NOT IN ( SELECT LOWER(title) FROM songs );
1013 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('LET\'S GET DOWN') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1014 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LET\'S GET DOWN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1015 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LET\'S GET DOWN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',4);
1016 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LET\'S GET DOWN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',5);
1017 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LET\'S GET DOWN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',8);
1018 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LET\'S GET DOWN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1019 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LET\'S GET DOWN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
1020 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LET\'S GET DOWN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1021 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LET\'S GET DOWN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',7);
1022 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'LITTLE BITCH' AS title, 'THE SPECIALS' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('LITTLE BITCH') NOT IN ( SELECT LOWER(title) FROM songs );
1023 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('LITTLE BITCH') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1024 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LITTLE BITCH')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1025 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LITTLE BITCH')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1026 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LITTLE BITCH')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1027 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LITTLE BITCH')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',8);
1028 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LITTLE BITCH')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',5);
1029 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LITTLE BITCH')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1030 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LITTLE BITCH')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1031 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LITTLE BITCH')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',8);
1032 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'MAKE IT BETTER' AS title, 'MITSU-O!' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('MAKE IT BETTER') NOT IN ( SELECT LOWER(title) FROM songs );
1033 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('MAKE IT BETTER') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1034 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAKE IT BETTER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1035 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAKE IT BETTER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1036 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAKE IT BETTER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1037 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAKE IT BETTER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',5);
1038 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAKE IT BETTER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
1039 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MAKE IT BETTER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1040 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'PARANOiA' AS title, '180' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('PARANOiA') NOT IN ( SELECT LOWER(title) FROM songs );
1041 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1042 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',6);
1043 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
1044 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1045 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',7);
1046 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',8);
1047 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
1048 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'TRIP MACHINE' AS title, 'DE-SIRE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('TRIP MACHINE') NOT IN ( SELECT LOWER(title) FROM songs );
1049 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1050 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',6);
1051 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
1052 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1053 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',7);
1054 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',8);
1055 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1056 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'CAN\'T STOP FALLIN\' IN LOVE' AS title, 'NAOKI' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('CAN\'T STOP FALLIN\' IN LOVE') NOT IN ( SELECT LOWER(title) FROM songs );
1057 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('CAN\'T STOP FALLIN\' IN LOVE') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1058 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CAN\'T STOP FALLIN\' IN LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1059 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CAN\'T STOP FALLIN\' IN LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1060 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CAN\'T STOP FALLIN\' IN LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1061 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CAN\'T STOP FALLIN\' IN LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1062 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CAN\'T STOP FALLIN\' IN LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',4);
1063 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CAN\'T STOP FALLIN\' IN LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1064 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'CELEBRATE NITE' AS title, 'N.M.R' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('CELEBRATE NITE') NOT IN ( SELECT LOWER(title) FROM songs );
1065 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('CELEBRATE NITE') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1066 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CELEBRATE NITE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1067 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CELEBRATE NITE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1068 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CELEBRATE NITE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1069 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CELEBRATE NITE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1070 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CELEBRATE NITE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1071 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CELEBRATE NITE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1072 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'DROP OUT' AS title, 'NW260' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('DROP OUT') NOT IN ( SELECT LOWER(title) FROM songs );
1073 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP OUT') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1074 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP OUT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
1075 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP OUT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
1076 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP OUT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
1077 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP OUT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',5);
1078 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP OUT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
1079 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP OUT')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
1080 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'HYSTERIA' AS title, 'NAOKI 190' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('HYSTERIA') NOT IN ( SELECT LOWER(title) FROM songs );
1081 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('HYSTERIA') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1082 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HYSTERIA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1083 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HYSTERIA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1084 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HYSTERIA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1085 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HYSTERIA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1086 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HYSTERIA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1087 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HYSTERIA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1088 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'PARANOiA EVOLUTION' AS title, '200' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('PARANOiA EVOLUTION') NOT IN ( SELECT LOWER(title) FROM songs );
1089 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA EVOLUTION') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1090 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA EVOLUTION')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',6);
1091 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA EVOLUTION')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
1092 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA EVOLUTION')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1093 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA EVOLUTION')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',5);
1094 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA EVOLUTION')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
1095 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA EVOLUTION')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
1096 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'SEXY PLANET' AS title, 'Crystal Aliens' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('SEXY PLANET') NOT IN ( SELECT LOWER(title) FROM songs );
1097 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('SEXY PLANET') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1098 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SEXY PLANET')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
1099 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SEXY PLANET')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1100 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SEXY PLANET')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1101 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SEXY PLANET')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1102 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SEXY PLANET')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1103 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SEXY PLANET')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1104 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'SKY HIGH' AS title, 'DJ MIKO' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('SKY HIGH') NOT IN ( SELECT LOWER(title) FROM songs );
1105 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('SKY HIGH') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1106 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SKY HIGH')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
1107 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SKY HIGH')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',4);
1108 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SKY HIGH')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',6);
1109 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SKY HIGH')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',1);
1110 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SKY HIGH')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',3);
1111 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SKY HIGH')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',6);
1112 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'SUPER STAR' AS title, 'DJ.RICH feat. Tail Bros.' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('SUPER STAR') NOT IN ( SELECT LOWER(title) FROM songs );
1113 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('SUPER STAR') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1114 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SUPER STAR')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
1115 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SUPER STAR')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1116 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SUPER STAR')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1117 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SUPER STAR')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1118 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SUPER STAR')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1119 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('SUPER STAR')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1120 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'WILD RUSH' AS title, 'FACTOR-X' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('WILD RUSH') NOT IN ( SELECT LOWER(title) FROM songs );
1121 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('WILD RUSH') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1122 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WILD RUSH')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1123 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WILD RUSH')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1124 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WILD RUSH')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',6);
1125 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WILD RUSH')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1126 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WILD RUSH')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1127 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('WILD RUSH')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1128 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, '20, November' AS title, 'DJ nagureo' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('20, November') NOT IN ( SELECT LOWER(title) FROM songs );
1129 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('20, November') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1130 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('20, November')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1131 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('20, November')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',4);
1132 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('20, November')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1133 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('20, November')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1134 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('20, November')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
1135 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('20, November')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
1136 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, '5.1.1' AS title, 'dj nagureo' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('5.1.1') NOT IN ( SELECT LOWER(title) FROM songs );
1137 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('5.1.1') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1138 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('5.1.1')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',1);
1139 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('5.1.1')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1140 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('5.1.1')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1141 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('5.1.1')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
1142 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('5.1.1')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1143 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('5.1.1')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1144 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Be in my paradise' AS title, 'JJ COMPANY' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Be in my paradise') NOT IN ( SELECT LOWER(title) FROM songs );
1145 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Be in my paradise') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1146 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Be in my paradise')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',1);
1147 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Be in my paradise')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',3);
1148 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Be in my paradise')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',6);
1149 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Be in my paradise')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1150 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Be in my paradise')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
1151 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Be in my paradise')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
1152 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'celebrate' AS title, 'JJ COMPANY' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('celebrate') NOT IN ( SELECT LOWER(title) FROM songs );
1153 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('celebrate') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1154 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('celebrate')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1155 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('celebrate')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1156 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('celebrate')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1157 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('celebrate')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',5);
1158 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('celebrate')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',8);
1159 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('celebrate')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1160 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'DR. LOVE' AS title, 'baby weapon feat. Asuka. M' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('DR. LOVE') NOT IN ( SELECT LOWER(title) FROM songs );
1161 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('DR. LOVE') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1162 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DR. LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1163 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DR. LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1164 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DR. LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1165 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DR. LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1166 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DR. LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1167 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DR. LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',6);
1168 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'e-motion' AS title, 'e.o.s.' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('e-motion') NOT IN ( SELECT LOWER(title) FROM songs );
1169 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('e-motion') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1170 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('e-motion')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1171 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('e-motion')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',4);
1172 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('e-motion')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',6);
1173 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('e-motion')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',5);
1174 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('e-motion')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1175 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('e-motion')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1176 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'GENOM SCREAMS' AS title, 'L.E.D. LIGHT' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('GENOM SCREAMS') NOT IN ( SELECT LOWER(title) FROM songs );
1177 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('GENOM SCREAMS') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1178 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GENOM SCREAMS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1179 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GENOM SCREAMS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
1180 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GENOM SCREAMS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1181 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GENOM SCREAMS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1182 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GENOM SCREAMS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',6);
1183 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GENOM SCREAMS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',8);
1184 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('GENOM SCREAMS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',10);
1185 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'jam jam reggae' AS title, 'jam master \'73' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('jam jam reggae') NOT IN ( SELECT LOWER(title) FROM songs );
1186 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('jam jam reggae') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1187 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('jam jam reggae')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
1188 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('jam jam reggae')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',4);
1189 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('jam jam reggae')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1190 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('jam jam reggae')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1191 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('jam jam reggae')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
1192 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('jam jam reggae')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
1193 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'LUV TO ME (disco mix)' AS title, 'tiger YAMATO' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('LUV TO ME (disco mix)') NOT IN ( SELECT LOWER(title) FROM songs );
1194 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('LUV TO ME (disco mix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1195 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LUV TO ME (disco mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1196 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LUV TO ME (disco mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
1197 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LUV TO ME (disco mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
1198 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LUV TO ME (disco mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1199 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LUV TO ME (disco mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',8);
1200 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LUV TO ME (disco mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1201 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'R3' AS title, 'tiger YAMATO' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('R3') NOT IN ( SELECT LOWER(title) FROM songs );
1202 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('R3') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1203 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('R3')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
1204 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('R3')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1205 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('R3')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1206 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('R3')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',6);
1207 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('R3')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',8);
1208 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('R3')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
1209 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'ska a go go' AS title, 'THE BALD HEAD' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('ska a go go') NOT IN ( SELECT LOWER(title) FROM songs );
1210 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('ska a go go') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1211 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ska a go go')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',6);
1212 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ska a go go')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',8);
1213 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ska a go go')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
1214 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ska a go go')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',6);
1215 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ska a go go')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',8);
1216 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ska a go go')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
1217 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'AFTER THE GAME OF LOVE' AS title, 'NPD3' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('AFTER THE GAME OF LOVE') NOT IN ( SELECT LOWER(title) FROM songs );
1218 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('AFTER THE GAME OF LOVE') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1219 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AFTER THE GAME OF LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',1);
1220 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AFTER THE GAME OF LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',4);
1221 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AFTER THE GAME OF LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',5);
1222 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AFTER THE GAME OF LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
1223 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AFTER THE GAME OF LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',4);
1224 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AFTER THE GAME OF LOVE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',6);
1225 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'AM-3P 303 Bass mix' AS title, 'ktz' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('AM-3P 303 Bass mix') NOT IN ( SELECT LOWER(title) FROM songs );
1226 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('AM-3P 303 Bass mix') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1227 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AM-3P 303 Bass mix')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1228 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AM-3P 303 Bass mix')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1229 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AM-3P 303 Bass mix')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1230 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AM-3P 303 Bass mix')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1231 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AM-3P 303 Bass mix')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',5);
1232 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AM-3P 303 Bass mix')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1233 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AM-3P 303 Bass mix')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1234 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'CUTIE CHASER' AS title, 'CLUB SPICE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('CUTIE CHASER') NOT IN ( SELECT LOWER(title) FROM songs );
1235 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('CUTIE CHASER') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1236 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CUTIE CHASER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1237 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CUTIE CHASER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',4);
1238 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CUTIE CHASER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1239 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CUTIE CHASER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1240 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CUTIE CHASER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1241 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CUTIE CHASER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1242 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'CUTIE CHASER (Morning Mix)' AS title, 'CLUB SPICE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('CUTIE CHASER (Morning Mix)') NOT IN ( SELECT LOWER(title) FROM songs );
1243 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('CUTIE CHASER (Morning Mix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1244 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CUTIE CHASER (Morning Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1245 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CUTIE CHASER (Morning Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',3);
1246 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CUTIE CHASER (Morning Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',5);
1247 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CUTIE CHASER (Morning Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1248 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CUTIE CHASER (Morning Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',4);
1249 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('CUTIE CHASER (Morning Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',4);
1250 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'DIVE (more deep & deeper style)' AS title, 'Be For U' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('DIVE (more deep & deeper style)') NOT IN ( SELECT LOWER(title) FROM songs );
1251 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('DIVE (more deep & deeper style)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1252 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DIVE (more deep & deeper style)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1253 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DIVE (more deep & deeper style)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1254 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DIVE (more deep & deeper style)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1255 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DIVE (more deep & deeper style)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
1256 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DIVE (more deep & deeper style)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1257 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DIVE (more deep & deeper style)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',6);
1258 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Do It Right' AS title, 'SOTA feat. Ebony Fay' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Do It Right') NOT IN ( SELECT LOWER(title) FROM songs );
1259 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Do It Right') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1260 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Do It Right')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1261 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Do It Right')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1262 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Do It Right')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1263 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Do It Right')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1264 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Do It Right')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1265 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Do It Right')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1266 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Do It Right (Harmonized 2 Step Mix)' AS title, 'SOTA feat. Ebony Fay' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Do It Right (Harmonized 2 Step Mix)') NOT IN ( SELECT LOWER(title) FROM songs );
1267 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Do It Right (Harmonized 2 Step Mix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1268 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Do It Right (Harmonized 2 Step Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1269 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Do It Right (Harmonized 2 Step Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1270 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Do It Right (Harmonized 2 Step Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1271 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Do It Right (Harmonized 2 Step Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1272 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Do It Right (Harmonized 2 Step Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1273 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Do It Right (Harmonized 2 Step Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1274 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'DROP THE BOMB' AS title, 'Scotty D.' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('DROP THE BOMB') NOT IN ( SELECT LOWER(title) FROM songs );
1275 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP THE BOMB') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1276 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP THE BOMB')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1277 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP THE BOMB')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1278 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP THE BOMB')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',6);
1279 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP THE BOMB')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1280 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP THE BOMB')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1281 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP THE BOMB')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',6);
1282 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'DROP THE BOMB -System S.F. Mix-' AS title, 'Scotty D.' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('DROP THE BOMB -System S.F. Mix-') NOT IN ( SELECT LOWER(title) FROM songs );
1283 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP THE BOMB -System S.F. Mix-') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1284 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP THE BOMB -System S.F. Mix-')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1285 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP THE BOMB -System S.F. Mix-')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1286 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP THE BOMB -System S.F. Mix-')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1287 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP THE BOMB -System S.F. Mix-')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1288 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP THE BOMB -System S.F. Mix-')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1289 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DROP THE BOMB -System S.F. Mix-')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1290 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'DYNAMITE RAVE -Down Bird SOTA Mix-' AS title, 'NAOKI' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('DYNAMITE RAVE -Down Bird SOTA Mix-') NOT IN ( SELECT LOWER(title) FROM songs );
1291 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('DYNAMITE RAVE -Down Bird SOTA Mix-') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1292 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DYNAMITE RAVE -Down Bird SOTA Mix-')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1293 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DYNAMITE RAVE -Down Bird SOTA Mix-')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1294 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DYNAMITE RAVE -Down Bird SOTA Mix-')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1295 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DYNAMITE RAVE -Down Bird SOTA Mix-')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1296 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DYNAMITE RAVE -Down Bird SOTA Mix-')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1297 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DYNAMITE RAVE -Down Bird SOTA Mix-')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1298 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DYNAMITE RAVE -Down Bird SOTA Mix-')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1299 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Groove' AS title, 'Sho-T feat. Brenda' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Groove') NOT IN ( SELECT LOWER(title) FROM songs );
1300 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Groove') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1301 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Groove')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1302 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Groove')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1303 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Groove')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1304 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Groove')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1305 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Groove')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1306 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Groove')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1307 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Groove 2001' AS title, 'Sho-T feat. Brenda' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Groove 2001') NOT IN ( SELECT LOWER(title) FROM songs );
1308 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Groove 2001') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1309 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Groove 2001')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1310 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Groove 2001')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1311 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Groove 2001')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1312 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Groove 2001')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1313 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Groove 2001')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1314 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Groove 2001')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1315 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Healing Vision (Angelic mix)' AS title, '2MB' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Healing Vision (Angelic mix)') NOT IN ( SELECT LOWER(title) FROM songs );
1316 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Healing Vision (Angelic mix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1317 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Healing Vision (Angelic mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
1318 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Healing Vision (Angelic mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
1319 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Healing Vision (Angelic mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
1320 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Healing Vision (Angelic mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',5);
1321 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Healing Vision (Angelic mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
1322 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Healing Vision (Angelic mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
1323 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Kind Lady' AS title, 'Okuyatos' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Kind Lady') NOT IN ( SELECT LOWER(title) FROM songs );
1324 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Kind Lady') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1325 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Kind Lady')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1326 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Kind Lady')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1327 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Kind Lady')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1328 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Kind Lady')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1329 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Kind Lady')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1330 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Kind Lady')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1331 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'La Senorita Virtual' AS title, '2MB' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('La Senorita Virtual') NOT IN ( SELECT LOWER(title) FROM songs );
1332 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('La Senorita Virtual') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1333 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('La Senorita Virtual')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',7);
1334 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('La Senorita Virtual')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',8);
1335 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('La Senorita Virtual')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1336 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('La Senorita Virtual')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',6);
1337 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('La Senorita Virtual')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
1338 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('La Senorita Virtual')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1339 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Let the beat hit em! (CLASSIC R&B STYLE)' AS title, 'STONE BROS.' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Let the beat hit em! (CLASSIC R&B STYLE)') NOT IN ( SELECT LOWER(title) FROM songs );
1340 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Let the beat hit em! (CLASSIC R&B STYLE)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1341 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Let the beat hit em! (CLASSIC R&B STYLE)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1342 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Let the beat hit em! (CLASSIC R&B STYLE)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1343 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Let the beat hit em! (CLASSIC R&B STYLE)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',6);
1344 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Let the beat hit em! (CLASSIC R&B STYLE)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1345 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Let the beat hit em! (CLASSIC R&B STYLE)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1346 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Let the beat hit em! (CLASSIC R&B STYLE)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',6);
1347 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Look To The Sky' AS title, 'System S.F. feat. ANNA' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Look To The Sky') NOT IN ( SELECT LOWER(title) FROM songs );
1348 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Look To The Sky') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1349 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Look To The Sky')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1350 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Look To The Sky')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1351 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Look To The Sky')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1352 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Look To The Sky')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
1353 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Look To The Sky')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1354 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Look To The Sky')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1355 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Look To The Sky (True Color Mix)' AS title, 'System S.F. feat. ANNA' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Look To The Sky (True Color Mix)') NOT IN ( SELECT LOWER(title) FROM songs );
1356 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Look To The Sky (True Color Mix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1357 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Look To The Sky (True Color Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1358 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Look To The Sky (True Color Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1359 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Look To The Sky (True Color Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1360 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Look To The Sky (True Color Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1361 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Look To The Sky (True Color Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1362 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Look To The Sky (True Color Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1363 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Look To The Sky (True Color Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1364 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'LOVE THIS FEELIN\'' AS title, 'Chang Ma' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('LOVE THIS FEELIN\'') NOT IN ( SELECT LOWER(title) FROM songs );
1365 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE THIS FEELIN\'') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1366 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE THIS FEELIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',6);
1367 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE THIS FEELIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
1368 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE THIS FEELIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1369 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE THIS FEELIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',7);
1370 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE THIS FEELIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',8);
1371 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LOVE THIS FEELIN\'')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1372 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Midnite Blaze' AS title, 'U1 Jewel Style' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Midnite Blaze') NOT IN ( SELECT LOWER(title) FROM songs );
1373 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Midnite Blaze') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1374 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Midnite Blaze')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1375 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Midnite Blaze')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1376 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Midnite Blaze')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1377 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Midnite Blaze')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1378 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Midnite Blaze')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1379 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Midnite Blaze')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1380 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'ON THE JAZZ' AS title, 'Jonny Dynamite!' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('ON THE JAZZ') NOT IN ( SELECT LOWER(title) FROM songs );
1381 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('ON THE JAZZ') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1382 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ON THE JAZZ')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
1383 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ON THE JAZZ')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1384 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ON THE JAZZ')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1385 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ON THE JAZZ')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1386 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ON THE JAZZ')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1387 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ON THE JAZZ')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1388 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'ORION .78 (civilization mix)' AS title, '2MB' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('ORION .78 (civilization mix)') NOT IN ( SELECT LOWER(title) FROM songs );
1389 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('ORION .78 (civilization mix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1390 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ORION .78 (civilization mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',6);
1391 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ORION .78 (civilization mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',8);
1392 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ORION .78 (civilization mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
1393 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ORION .78 (civilization mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',6);
1394 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ORION .78 (civilization mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',8);
1395 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ORION .78 (civilization mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
1396 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'PARANOiA (KCET CLEAN  MIX)' AS title, '2MB' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('PARANOiA (KCET CLEAN  MIX)') NOT IN ( SELECT LOWER(title) FROM songs );
1397 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA (KCET CLEAN  MIX)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1398 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA (KCET CLEAN  MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',6);
1399 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA (KCET CLEAN  MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
1400 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA (KCET CLEAN  MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1401 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA (KCET CLEAN  MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',7);
1402 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA (KCET CLEAN  MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',8);
1403 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('PARANOiA (KCET CLEAN  MIX)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
1404 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Share My Love' AS title, 'Julie Frost' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Share My Love') NOT IN ( SELECT LOWER(title) FROM songs );
1405 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Share My Love') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1406 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Share My Love')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1407 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Share My Love')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1408 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Share My Love')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1409 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Share My Love')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1410 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Share My Love')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1411 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Share My Love')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',4);
1412 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Share My Love')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',5);
1413 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'So In Love' AS title, 'Caramel S.' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('So In Love') NOT IN ( SELECT LOWER(title) FROM songs );
1414 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('So In Love') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1415 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('So In Love')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1416 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('So In Love')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1417 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('So In Love')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1418 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('So In Love')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1419 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('So In Love')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1420 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('So In Love')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1421 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'think ya better D' AS title, 'sAmi' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('think ya better D') NOT IN ( SELECT LOWER(title) FROM songs );
1422 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('think ya better D') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1423 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('think ya better D')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1424 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('think ya better D')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',4);
1425 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('think ya better D')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',5);
1426 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('think ya better D')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1427 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('think ya better D')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',4);
1428 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('think ya better D')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1429 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'TRIP MACHINE (luv mix)' AS title, '2MB' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('TRIP MACHINE (luv mix)') NOT IN ( SELECT LOWER(title) FROM songs );
1430 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE (luv mix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1431 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE (luv mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',6);
1432 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE (luv mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
1433 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE (luv mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1434 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE (luv mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',7);
1435 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE (luv mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',8);
1436 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TRIP MACHINE (luv mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
1437 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'HOLD ON ME' AS title, 'tiger YAMATO' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('HOLD ON ME') NOT IN ( SELECT LOWER(title) FROM songs );
1438 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('HOLD ON ME') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1439 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HOLD ON ME')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1440 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HOLD ON ME')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1441 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HOLD ON ME')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1442 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HOLD ON ME')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',6);
1443 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HOLD ON ME')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1444 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HOLD ON ME')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1445 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('HOLD ON ME')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',6);
1446 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'AFRONOVA PRIMEVAL' AS title, '8 bit' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('AFRONOVA PRIMEVAL') NOT IN ( SELECT LOWER(title) FROM songs );
1447 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('AFRONOVA PRIMEVAL') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1448 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AFRONOVA PRIMEVAL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1449 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AFRONOVA PRIMEVAL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1450 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AFRONOVA PRIMEVAL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
1451 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AFRONOVA PRIMEVAL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1452 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AFRONOVA PRIMEVAL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1453 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('AFRONOVA PRIMEVAL')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
1454 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'BROKEN MY HEART' AS title, 'NAOKI feat.PAULA TERRY' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('BROKEN MY HEART') NOT IN ( SELECT LOWER(title) FROM songs );
1455 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('BROKEN MY HEART') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1456 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BROKEN MY HEART')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1457 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BROKEN MY HEART')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1458 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BROKEN MY HEART')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
1459 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BROKEN MY HEART')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1460 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BROKEN MY HEART')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1461 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BROKEN MY HEART')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
1462 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Heaven is a \'57 metallic gray (gimmix)' AS title, 'Hiro feat. Sweet little 30\'s' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Heaven is a \'57 metallic gray (gimmix)') NOT IN ( SELECT LOWER(title) FROM songs );
1463 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Heaven is a \'57 metallic gray (gimmix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1464 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Heaven is a \'57 metallic gray (gimmix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',2);
1465 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Heaven is a \'57 metallic gray (gimmix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1466 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Heaven is a \'57 metallic gray (gimmix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1467 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Heaven is a \'57 metallic gray (gimmix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1468 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Heaven is a \'57 metallic gray (gimmix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1469 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Heaven is a \'57 metallic gray (gimmix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1470 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Heaven is a \'57 metallic gray (gimmix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1471 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'JANEJANA' AS title, 'T.E.M.P.O. feat. Mohammed & Emi' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('JANEJANA') NOT IN ( SELECT LOWER(title) FROM songs );
1472 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('JANEJANA') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1473 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('JANEJANA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1474 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('JANEJANA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1475 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('JANEJANA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1476 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('JANEJANA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1477 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('JANEJANA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1478 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('JANEJANA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1479 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('JANEJANA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1480 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'KISS KISS KISS' AS title, 'NAOKI feat. SHANTI' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('KISS KISS KISS') NOT IN ( SELECT LOWER(title) FROM songs );
1481 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('KISS KISS KISS') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1482 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('KISS KISS KISS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1483 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('KISS KISS KISS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1484 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('KISS KISS KISS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1485 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('KISS KISS KISS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1486 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('KISS KISS KISS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1487 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('KISS KISS KISS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1488 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('KISS KISS KISS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1489 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'KISS ME ALL NIGHT LONG' AS title, 'NAOKI J-STYLE feat. MIU' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('KISS ME ALL NIGHT LONG') NOT IN ( SELECT LOWER(title) FROM songs );
1490 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('KISS ME ALL NIGHT LONG') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1491 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('KISS ME ALL NIGHT LONG')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1492 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('KISS ME ALL NIGHT LONG')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1493 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('KISS ME ALL NIGHT LONG')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1494 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('KISS ME ALL NIGHT LONG')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1495 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('KISS ME ALL NIGHT LONG')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1496 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('KISS ME ALL NIGHT LONG')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1497 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('KISS ME ALL NIGHT LONG')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1498 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Matsuri JAPAN' AS title, 'RE-VENGE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Matsuri JAPAN') NOT IN ( SELECT LOWER(title) FROM songs );
1499 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Matsuri JAPAN') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1500 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Matsuri JAPAN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1501 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Matsuri JAPAN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1502 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Matsuri JAPAN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
1503 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Matsuri JAPAN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1504 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Matsuri JAPAN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1505 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Matsuri JAPAN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1506 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'MOBO★MOGA' AS title, 'Orange Lounge' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('MOBO★MOGA') NOT IN ( SELECT LOWER(title) FROM songs );
1507 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('MOBO★MOGA') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1508 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MOBO★MOGA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1509 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MOBO★MOGA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1510 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MOBO★MOGA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1511 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MOBO★MOGA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1512 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MOBO★MOGA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1513 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MOBO★MOGA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1514 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('MOBO★MOGA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1515 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'STAY (Organic house Version)' AS title, 'emi' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('STAY (Organic house Version)') NOT IN ( SELECT LOWER(title) FROM songs );
1516 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('STAY (Organic house Version)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1517 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('STAY (Organic house Version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1518 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('STAY (Organic house Version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1519 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('STAY (Organic house Version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1520 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('STAY (Organic house Version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1521 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('STAY (Organic house Version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1522 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('STAY (Organic house Version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1523 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('STAY (Organic house Version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1524 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Frozen Ray (for EXTREME)' AS title, 'dj TAKA' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Frozen Ray (for EXTREME)') NOT IN ( SELECT LOWER(title) FROM songs );
1525 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Frozen Ray (for EXTREME)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1526 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Frozen Ray (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1527 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Frozen Ray (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1528 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Frozen Ray (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1529 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Frozen Ray (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
1530 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Frozen Ray (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1531 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Frozen Ray (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1532 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Frozen Ray (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1533 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Pink Rose' AS title, 'Kiyommy + Seiya' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Pink Rose') NOT IN ( SELECT LOWER(title) FROM songs );
1534 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Pink Rose') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1535 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Pink Rose')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1536 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Pink Rose')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1537 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Pink Rose')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1538 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Pink Rose')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1539 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Pink Rose')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1540 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Pink Rose')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1541 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Pink Rose')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1542 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Across the nightmare' AS title, 'Jimmy Weckl' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Across the nightmare') NOT IN ( SELECT LOWER(title) FROM songs );
1543 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Across the nightmare') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1544 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Across the nightmare')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',3);
1545 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Across the nightmare')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
1546 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Across the nightmare')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1547 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Across the nightmare')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1548 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Across the nightmare')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',9);
1549 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Across the nightmare')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',5);
1550 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Across the nightmare')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1551 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Across the nightmare')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1552 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Across the nightmare')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',9);
1553 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Destiny lovers' AS title, 'Kunitake Miyuki' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Destiny lovers') NOT IN ( SELECT LOWER(title) FROM songs );
1554 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Destiny lovers') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1555 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Destiny lovers')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1556 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Destiny lovers')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1557 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Destiny lovers')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1558 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Destiny lovers')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
1559 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Destiny lovers')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
1560 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Destiny lovers')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1561 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Destiny lovers')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1562 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'I\'m gonna get you!' AS title, 'Kelly Cosmo' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('I\'m gonna get you!') NOT IN ( SELECT LOWER(title) FROM songs );
1563 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('I\'m gonna get you!') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1564 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I\'m gonna get you!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1565 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I\'m gonna get you!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1566 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I\'m gonna get you!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1567 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I\'m gonna get you!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1568 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I\'m gonna get you!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1569 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I\'m gonna get you!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1570 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I\'m gonna get you!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1571 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'JET WORLD' AS title, 'Mutsuhiko Izumi' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('JET WORLD') NOT IN ( SELECT LOWER(title) FROM songs );
1572 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('JET WORLD') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1573 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('JET WORLD')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1574 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('JET WORLD')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1575 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('JET WORLD')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1576 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('JET WORLD')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1577 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('JET WORLD')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1578 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('JET WORLD')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1579 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('JET WORLD')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1580 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Mikeneko Rock' AS title, 'Anettai Maji - Ska Bakudan' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Mikeneko Rock') NOT IN ( SELECT LOWER(title) FROM songs );
1581 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Mikeneko Rock') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1582 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Mikeneko Rock')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',2);
1583 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Mikeneko Rock')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1584 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Mikeneko Rock')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1585 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Mikeneko Rock')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1586 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Mikeneko Rock')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
1587 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Mikeneko Rock')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1588 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Mikeneko Rock')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1589 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'The Least 100 sec' AS title, 'Hirofumi Sasaki' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('The Least 100 sec') NOT IN ( SELECT LOWER(title) FROM songs );
1590 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('The Least 100 sec') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1591 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('The Least 100 sec')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',3);
1592 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('The Least 100 sec')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
1593 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('The Least 100 sec')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
1594 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('The Least 100 sec')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1595 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('The Least 100 sec')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',5);
1596 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('The Least 100 sec')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',8);
1597 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('The Least 100 sec')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1598 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, '❤LOVE² SUGAR❤' AS title, 'dj TAKA featuring Noria' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('❤LOVE² SUGAR❤') NOT IN ( SELECT LOWER(title) FROM songs );
1599 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('❤LOVE² SUGAR❤') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1600 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('❤LOVE² SUGAR❤')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1601 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('❤LOVE² SUGAR❤')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1602 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('❤LOVE² SUGAR❤')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1603 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('❤LOVE² SUGAR❤')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1604 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('❤LOVE² SUGAR❤')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1605 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('❤LOVE² SUGAR❤')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1606 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('❤LOVE² SUGAR❤')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1607 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Daikenkai' AS title, 'Des-ROW feat. TSUBOI for ALPHA' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Daikenkai') NOT IN ( SELECT LOWER(title) FROM songs );
1608 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Daikenkai') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1609 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Daikenkai')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1610 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Daikenkai')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1611 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Daikenkai')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1612 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Daikenkai')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1613 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Daikenkai')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',8);
1614 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Daikenkai')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1615 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Daikenkai')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1616 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Daikenkai')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1617 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Daikenkai')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',9);
1618 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Mahou no Tobira (Theme Of Space Maco) [Door of Magic]' AS title, 'a.s.a.' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Mahou no Tobira (Theme Of Space Maco) [Door of Magic]') NOT IN ( SELECT LOWER(title) FROM songs );
1619 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Mahou no Tobira (Theme Of Space Maco) [Door of Magic]') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1620 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Mahou no Tobira (Theme Of Space Maco) [Door of Magic]')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',2);
1621 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Mahou no Tobira (Theme Of Space Maco) [Door of Magic]')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1622 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Mahou no Tobira (Theme Of Space Maco) [Door of Magic]')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1623 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Mahou no Tobira (Theme Of Space Maco) [Door of Magic]')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1624 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Mahou no Tobira (Theme Of Space Maco) [Door of Magic]')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1625 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Mahou no Tobira (Theme Of Space Maco) [Door of Magic]')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1626 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Mahou no Tobira (Theme Of Space Maco) [Door of Magic]')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1627 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'White Lovers' AS title, 'Shintani Sanae' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('White Lovers') NOT IN ( SELECT LOWER(title) FROM songs );
1628 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('White Lovers') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1629 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('White Lovers')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1630 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('White Lovers')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
1631 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('White Lovers')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',4);
1632 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('White Lovers')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1633 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('White Lovers')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
1634 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('White Lovers')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1635 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('White Lovers')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1636 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Gamelan de Couple' AS title, 'TOMOSUKE' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Gamelan de Couple') NOT IN ( SELECT LOWER(title) FROM songs );
1637 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Gamelan de Couple') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1638 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Gamelan de Couple')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1639 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Gamelan de Couple')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1640 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Gamelan de Couple')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1641 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Gamelan de Couple')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1642 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Gamelan de Couple')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1643 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Gamelan de Couple')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1644 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Gamelan de Couple')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
1645 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'LA BAMBA' AS title, 'Mexican Folk Song' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('LA BAMBA') NOT IN ( SELECT LOWER(title) FROM songs );
1646 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('LA BAMBA') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1647 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LA BAMBA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1648 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LA BAMBA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1649 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LA BAMBA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1650 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LA BAMBA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1651 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LA BAMBA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1652 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LA BAMBA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1653 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LA BAMBA')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1654 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, '321STARS' AS title, 'DJ SIMON' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('321STARS') NOT IN ( SELECT LOWER(title) FROM songs );
1655 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('321STARS') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1656 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('321STARS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',2);
1657 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('321STARS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1658 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('321STARS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1659 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('321STARS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1660 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('321STARS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1661 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('321STARS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
1662 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('321STARS')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1663 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'air' AS title, 'DJ SIMON' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('air') NOT IN ( SELECT LOWER(title) FROM songs );
1664 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('air') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1665 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('air')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1666 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('air')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1667 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('air')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1668 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('air')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1669 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('air')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
1670 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('air')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1671 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('air')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1672 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'BE LOVIN' AS title, 'D-Crew' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('BE LOVIN') NOT IN ( SELECT LOWER(title) FROM songs );
1673 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('BE LOVIN') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1674 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BE LOVIN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',2);
1675 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BE LOVIN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1676 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BE LOVIN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1677 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BE LOVIN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
1678 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BE LOVIN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1679 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BE LOVIN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1680 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('BE LOVIN')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1681 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Hysteria 2001' AS title, 'NM' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Hysteria 2001') NOT IN ( SELECT LOWER(title) FROM songs );
1682 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Hysteria 2001') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1683 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Hysteria 2001')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',7);
1684 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Hysteria 2001')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',7);
1685 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Miracle Moon ~L.E.D. LIGHT STYLE MIX~' AS title, 'Togo Project feat. Sana' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Miracle Moon ~L.E.D. LIGHT STYLE MIX~') NOT IN ( SELECT LOWER(title) FROM songs );
1686 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Miracle Moon ~L.E.D. LIGHT STYLE MIX~') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1687 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Miracle Moon ~L.E.D. LIGHT STYLE MIX~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1688 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Miracle Moon ~L.E.D. LIGHT STYLE MIX~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1689 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Miracle Moon ~L.E.D. LIGHT STYLE MIX~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1690 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Miracle Moon ~L.E.D. LIGHT STYLE MIX~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1691 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Miracle Moon ~L.E.D. LIGHT STYLE MIX~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
1692 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Miracle Moon ~L.E.D. LIGHT STYLE MIX~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1693 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Miracle Moon ~L.E.D. LIGHT STYLE MIX~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1694 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Sana Morette Ne Ente' AS title, 'Togo Project feat. Sana' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Sana Morette Ne Ente') NOT IN ( SELECT LOWER(title) FROM songs );
1695 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Sana Morette Ne Ente') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1696 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Sana Morette Ne Ente')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
1697 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Sana Morette Ne Ente')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1698 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Sana Morette Ne Ente')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1699 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Sana Morette Ne Ente')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
1700 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Sana Morette Ne Ente')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1701 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Sana Morette Ne Ente')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1702 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'feeling of love' AS title, 'youhei shimizu' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('feeling of love') NOT IN ( SELECT LOWER(title) FROM songs );
1703 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('feeling of love') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1704 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('feeling of love')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1705 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('feeling of love')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1706 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('feeling of love')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1707 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('feeling of love')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1708 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('feeling of love')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1709 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('feeling of love')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1710 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('feeling of love')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1711 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'TwinBee ~Generation X~' AS title, 'FinalOffset' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('TwinBee ~Generation X~') NOT IN ( SELECT LOWER(title) FROM songs );
1712 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('TwinBee ~Generation X~') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1713 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TwinBee ~Generation X~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1714 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TwinBee ~Generation X~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1715 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TwinBee ~Generation X~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1716 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TwinBee ~Generation X~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1717 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TwinBee ~Generation X~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1718 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TwinBee ~Generation X~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1719 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('TwinBee ~Generation X~')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1720 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, '.59' AS title, 'dj TAKA' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('.59') NOT IN ( SELECT LOWER(title) FROM songs );
1721 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('.59') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1722 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('.59')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1723 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('.59')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1724 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('.59')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1725 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('.59')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1726 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('.59')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1727 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('.59')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1728 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'A' AS title, 'DJ Amuro' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('A') NOT IN ( SELECT LOWER(title) FROM songs );
1729 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('A') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1730 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('A')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',2);
1731 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('A')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1732 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('A')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1733 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('A')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1734 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('A')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',9);
1735 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('A')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1736 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('A')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1737 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('A')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1738 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('A')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',9);
1739 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'ABSOLUTE' AS title, 'dj TAKA' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('ABSOLUTE') NOT IN ( SELECT LOWER(title) FROM songs );
1740 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('ABSOLUTE') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1741 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ABSOLUTE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1742 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ABSOLUTE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1743 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ABSOLUTE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1744 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ABSOLUTE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1745 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ABSOLUTE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1746 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('ABSOLUTE')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1747 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Abyss' AS title, 'dj TAKA' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Abyss') NOT IN ( SELECT LOWER(title) FROM songs );
1748 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Abyss') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1749 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Abyss')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
1750 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Abyss')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1751 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Abyss')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1752 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Abyss')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1753 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Abyss')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1754 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Abyss')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1755 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Aoi Shoudou (for EXTREME) [Blue Impulse]' AS title, 'Naoki feat. Yuki' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Aoi Shoudou (for EXTREME) [Blue Impulse]') NOT IN ( SELECT LOWER(title) FROM songs );
1756 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Aoi Shoudou (for EXTREME) [Blue Impulse]') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1757 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Aoi Shoudou (for EXTREME) [Blue Impulse]')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1758 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Aoi Shoudou (for EXTREME) [Blue Impulse]')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1759 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Aoi Shoudou (for EXTREME) [Blue Impulse]')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1760 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Aoi Shoudou (for EXTREME) [Blue Impulse]')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1761 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Aoi Shoudou (for EXTREME) [Blue Impulse]')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1762 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Aoi Shoudou (for EXTREME) [Blue Impulse]')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1763 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Aoi Shoudou (for EXTREME) [Blue Impulse]')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1764 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Burning Heat! (3 Option Mix)' AS title, 'Mr. T. feat. Motoaki F.' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Burning Heat! (3 Option Mix)') NOT IN ( SELECT LOWER(title) FROM songs );
1765 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Burning Heat! (3 Option Mix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1766 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Burning Heat! (3 Option Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
1767 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Burning Heat! (3 Option Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1768 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Burning Heat! (3 Option Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
1769 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Burning Heat! (3 Option Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
1770 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Burning Heat! (3 Option Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1771 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Burning Heat! (3 Option Mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
1772 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Colors (for EXTREME)' AS title, 'dj TAKA' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Colors (for EXTREME)') NOT IN ( SELECT LOWER(title) FROM songs );
1773 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Colors (for EXTREME)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1774 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Colors (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1775 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Colors (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1776 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Colors (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1777 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Colors (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1778 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Colors (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',9);
1779 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Colors (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1780 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Colors (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1781 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Colors (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1782 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Colors (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',9);
1783 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Don\'t Stop! -AMD 2nd MIX-' AS title, 'Dr. VIBE feat. JP miles' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Don\'t Stop! -AMD 2nd MIX-') NOT IN ( SELECT LOWER(title) FROM songs );
1784 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Don\'t Stop! -AMD 2nd MIX-') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1785 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Don\'t Stop! -AMD 2nd MIX-')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1786 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Don\'t Stop! -AMD 2nd MIX-')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1787 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Don\'t Stop! -AMD 2nd MIX-')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1788 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Don\'t Stop! -AMD 2nd MIX-')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1789 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Don\'t Stop! -AMD 2nd MIX-')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',4);
1790 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Don\'t Stop! -AMD 2nd MIX-')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',6);
1791 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'DXY!' AS title, 'TaQ' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('DXY!') NOT IN ( SELECT LOWER(title) FROM songs );
1792 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('DXY!') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1793 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DXY!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1794 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DXY!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1795 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DXY!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1796 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DXY!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1797 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DXY!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1798 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('DXY!')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1799 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Electro Tuned (the SubS mix)' AS title, 'TaQ' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Electro Tuned (the SubS mix)') NOT IN ( SELECT LOWER(title) FROM songs );
1800 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Electro Tuned (the SubS mix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1801 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Electro Tuned (the SubS mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
1802 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Electro Tuned (the SubS mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1803 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Electro Tuned (the SubS mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
1804 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Electro Tuned (the SubS mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1805 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Electro Tuned (the SubS mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1806 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Electro Tuned (the SubS mix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1807 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'era (nostalmix)' AS title, 'TaQ' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('era (nostalmix)') NOT IN ( SELECT LOWER(title) FROM songs );
1808 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('era (nostalmix)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1809 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('era (nostalmix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1810 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('era (nostalmix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1811 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('era (nostalmix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1812 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('era (nostalmix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1813 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('era (nostalmix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1814 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('era (nostalmix)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1815 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Happy Wedding' AS title, 'ASKA' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Happy Wedding') NOT IN ( SELECT LOWER(title) FROM songs );
1816 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Happy Wedding') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1817 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Happy Wedding')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1818 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Happy Wedding')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1819 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Happy Wedding')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1820 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Happy Wedding')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1821 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Happy Wedding')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1822 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Happy Wedding')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1823 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Happy Wedding')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',6);
1824 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Holic' AS title, 'TaQ' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Holic') NOT IN ( SELECT LOWER(title) FROM songs );
1825 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Holic') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1826 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Holic')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1827 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Holic')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1828 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Holic')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1829 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Holic')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1830 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Holic')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1831 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Holic')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1832 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'i feel...' AS title, 'AKIRA YAMAOKA' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('i feel...') NOT IN ( SELECT LOWER(title) FROM songs );
1833 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('i feel...') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1834 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('i feel...')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1835 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('i feel...')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1836 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('i feel...')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
1837 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('i feel...')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
1838 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('i feel...')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1839 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('i feel...')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
1840 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'I Was The One' AS title, 'good-cool' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('I Was The One') NOT IN ( SELECT LOWER(title) FROM songs );
1841 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('I Was The One') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1842 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I Was The One')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1843 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I Was The One')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1844 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I Was The One')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1845 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I Was The One')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1846 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I Was The One')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1847 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('I Was The One')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',6);
1848 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'L\'amour et la liberté (DDR ver.)' AS title, 'NAOKI underground' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('L\'amour et la liberté (DDR ver.)') NOT IN ( SELECT LOWER(title) FROM songs );
1849 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('L\'amour et la liberté (DDR ver.)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1850 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('L\'amour et la liberté (DDR ver.)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1851 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('L\'amour et la liberté (DDR ver.)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1852 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('L\'amour et la liberté (DDR ver.)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1853 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('L\'amour et la liberté (DDR ver.)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1854 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('L\'amour et la liberté (DDR ver.)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1855 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('L\'amour et la liberté (DDR ver.)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1856 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('L\'amour et la liberté (DDR ver.)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1857 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Last Message' AS title, 'good-cool feat. Meg' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Last Message') NOT IN ( SELECT LOWER(title) FROM songs );
1858 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Last Message') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1859 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Last Message')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1860 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Last Message')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1861 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Last Message')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1862 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Last Message')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1863 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Last Message')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1864 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Last Message')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1865 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Last Message')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1866 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'LEADING CYBER' AS title, 'dj TAKA' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('LEADING CYBER') NOT IN ( SELECT LOWER(title) FROM songs );
1867 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('LEADING CYBER') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1868 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LEADING CYBER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
1869 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LEADING CYBER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
1870 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LEADING CYBER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
1871 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LEADING CYBER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',4);
1872 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LEADING CYBER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
1873 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('LEADING CYBER')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
1874 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Mr.T. (take me higher)' AS title, 'Risky Men feat. Asuka M' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Mr.T. (take me higher)') NOT IN ( SELECT LOWER(title) FROM songs );
1875 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Mr.T. (take me higher)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1876 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Mr.T. (take me higher)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',3);
1877 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Mr.T. (take me higher)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1878 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Mr.T. (take me higher)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',7);
1879 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Mr.T. (take me higher)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1880 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Mr.T. (take me higher)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1881 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Mr.T. (take me higher)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',7);
1882 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Sakura' AS title, 'RevenG' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Sakura') NOT IN ( SELECT LOWER(title) FROM songs );
1883 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Sakura') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1884 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Sakura')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',3);
1885 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Sakura')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',5);
1886 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Sakura')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',8);
1887 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Sakura')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',10);
1888 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Sakura')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',9);
1889 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Sakura')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',6);
1890 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Sakura')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',8);
1891 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Sakura')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',10);
1892 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Sakura')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',9);
1893 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Spin the Disc' AS title, 'good-cool' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Spin the Disc') NOT IN ( SELECT LOWER(title) FROM songs );
1894 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Spin the Disc') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1895 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Spin the Disc')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',2);
1896 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Spin the Disc')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',5);
1897 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Spin the Disc')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1898 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Spin the Disc')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',2);
1899 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Spin the Disc')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1900 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Spin the Disc')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1901 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'stoic (EXTREME version)' AS title, 'TaQ' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('stoic (EXTREME version)') NOT IN ( SELECT LOWER(title) FROM songs );
1902 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('stoic (EXTREME version)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1903 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('stoic (EXTREME version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1904 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('stoic (EXTREME version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1905 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('stoic (EXTREME version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
1906 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('stoic (EXTREME version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
1907 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('stoic (EXTREME version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1908 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('stoic (EXTREME version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
1909 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('stoic (EXTREME version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
1910 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'sync (EXTREME version)' AS title, 'OutPhase' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('sync (EXTREME version)') NOT IN ( SELECT LOWER(title) FROM songs );
1911 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('sync (EXTREME version)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1912 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('sync (EXTREME version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1913 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('sync (EXTREME version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1914 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('sync (EXTREME version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',7);
1915 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('sync (EXTREME version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1916 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('sync (EXTREME version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',9);
1917 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('sync (EXTREME version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1918 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('sync (EXTREME version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',7);
1919 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('sync (EXTREME version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1920 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('sync (EXTREME version)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',9);
1921 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'V (for EXTREME)' AS title, 'TAKA' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('V (for EXTREME)') NOT IN ( SELECT LOWER(title) FROM songs );
1922 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('V (for EXTREME)') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1923 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('V (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1924 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('V (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1925 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('V (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1926 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('V (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',8);
1927 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('V (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','challenge',9);
1928 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('V (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',3);
1929 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('V (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',5);
1930 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('V (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',8);
1931 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('V (for EXTREME)')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','challenge',9);
1932 INSERT INTO songs SELECT nextval('songs_song_seq') AS song, 'Xenon' AS title, 'Mr. T' AS artist, 0 AS minbpm, 0 AS maxbpm WHERE LOWER('Xenon') NOT IN ( SELECT LOWER(title) FROM songs );
1933 INSERT INTO machinesongs SELECT ( SELECT song FROM songs WHERE LOWER(title)=LOWER('Xenon') ), ( SELECT machine FROM machines WHERE machinename='DDR Extreme' );
1934 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Xenon')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','beginner',1);
1935 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Xenon')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','standard',4);
1936 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Xenon')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','difficult',6);
1937 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Xenon')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'single','expert',9);
1938 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Xenon')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','standard',5);
1939 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Xenon')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','difficult',6);
1940 INSERT INTO songratings (song,machine,playmode,difficulty,feetrating) VALUES ((SELECT song FROM songs WHERE LOWER(title)=LOWER('Xenon')),(SELECT machine FROM machines WHERE machinename='DDR Extreme'),'double','expert',9);
1941 commit;