-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsongdata.js
3002 lines (2943 loc) · 87.1 KB
/
songdata.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
var __song = [
{
name: "E0000 HelloWorld",
author: ["Zzzyt"],
release: "2018-01-14",
tag: ["Music", "Test", "FL"],
length: "00:21",
source: "#O#",
audio: "audio/ZzzytE00/E0000 HelloWorld.mp3",
supplement:
'<b>FL Project File Comment</b><br>This music is all just for testing!<br>All the notes are made messily!<br><br>2020/2/22<br>The author was originally "XiaoMao205"',
},
{
name: "E0001 Piano Test 1",
author: ["Zzzyt"],
release: "2018-03-19",
tag: ["Music", "Test", "FL"],
length: "00:34",
source: "#O#",
audio: "audio/ZzzytE00/E0001 Piano Test 1.mp3",
supplement: "<b>FL Project File Comment</b><br>Test for Piano",
},
{
name: "E0002 Piano Test 2",
author: ["Zzzyt"],
release: "2018-04-02",
tag: ["Music", "Test", "FL"],
length: "00:51",
source: "#O#",
audio: "audio/ZzzytE00/E0002 Piano Test 2.mp3",
},
{
name: "E0003 Piano Test 3",
author: ["Zzzyt"],
release: "2018-04-15",
tag: ["Music", "Test", "FL"],
length: "00:13",
source: "#O#",
audio: "audio/ZzzytE00/E0003 Piano Test 3.mp3",
},
{
name: "E0004 Piano Test 4",
author: ["Zzzyt"],
release: "2018-04-22",
tag: ["Music", "Test", "Touhou", "FL"],
length: "00:29",
source: "#A# - Bad Apple!!",
audio: "audio/ZzzytE00/E0004 Piano Test 4.mp3",
supplement: "<b>FL Project File Comment</b><br>Original:Bad Apple",
},
{
name: "E0005 Piano Test 5",
author: ["Zzzyt"],
release: "2018-04-23",
tag: ["Music", "Test", "FL"],
length: "00:39",
source: "#O#",
audio: "audio/ZzzytE00/E0005 Piano Test 5.mp3",
},
{
name: "E0006 Piano Test 6",
author: ["Zzzyt"],
release: "2018-06-22",
tag: ["Music", "Test", "FL"],
length: "01:00",
source: "#O#",
audio: "audio/ZzzytE00/E0006 Piano Test 6.mp3",
supplement: "<b>FL Project File Comment</b><br>Water theme",
},
{
name: "E0007 Piano Test 7",
author: ["Zzzyt"],
release: "2018-10-04",
tag: ["Music", "Test", "FL"],
length: "00:32",
source: "#O#",
audio: "audio/ZzzytE00/E0007 Piano Test 7.mp3",
},
{
name: "E0008 Piano Test 8",
author: ["Zzzyt"],
release: "2018-10-04",
tag: ["Music", "Test", "FL"],
length: "00:04",
source: "#O#",
audio: "audio/ZzzytE00/E0008 Piano Test 8.mp3",
},
{
name: "E0009 Piano Test 9",
author: ["Zzzyt"],
release: "2018-10-06",
tag: ["Music", "Test", "FL"],
length: "00:06",
source: "#O#",
audio: "audio/ZzzytE00/E0009 Piano Test 9.mp3",
},
{
name: "E0010 Piano Test 10",
author: ["Zzzyt"],
release: "2018-06-22",
tag: ["Music", "Test", "FL"],
length: "01:07",
source: "Zzzyt - E0006 Piano Test 6",
audio: "audio/ZzzytE00/E0010 Piano Test 10.mp3",
supplement:
"<b>FL Project File Comment</b><br>Same theme as Piano Test 6 (Water).",
},
{
name: "E0011 Piano Test 11",
author: ["Zzzyt"],
release: "2019-01-01",
tag: ["Music", "Test", "FL"],
length: "00:17",
source: "#O#",
audio: "audio/ZzzytE00/E0011 Piano Test 11.mp3",
},
{
name: "E0012 Piano Test 12",
author: ["Zzzyt"],
release: "2019-02-11",
tag: ["Music", "Test", "FL"],
length: "00:17",
source: "#O#",
audio: "audio/ZzzytE00/E0012 Piano Test 12.mp3",
},
{
name: "E0013 Piano Test 13",
author: ["Zzzyt"],
release: "2019-03-15",
tag: ["Music", "Test", "FL"],
length: "00:31",
source: "#O#",
audio: "audio/ZzzytE00/E0013 Piano Test 13.mp3",
},
{
name: "E0014 Piano Test 14",
author: ["Zzzyt"],
release: "2019-05-08",
tag: ["Music", "Test", "FL"],
length: "00:59",
source: "#O#",
audio: "audio/ZzzytE00/E0014 Piano Test 14.mp3",
supplement:
"<b>FL Project File Comment</b><br>Prime Loops!<br>Stupid Loops!",
},
{
name: "E0015 Piano Test 15",
author: ["Zzzyt"],
release: "2019-05-13",
tag: ["Music", "Test", "FL"],
length: "00:56",
source: "#O#",
audio: "audio/ZzzytE00/E0015 Piano Test 15.mp3",
supplement: "<b>FL Project File Comment</b><br>I like guitar....and piano",
},
{
name: "E0016 Piano Test 16",
author: ["Zzzyt"],
release: "2019-05-17",
tag: ["Music", "Test", "Touhou", "FL"],
length: "00:39",
source: "#O#",
audio: "audio/ZzzytE00/E0016 Piano Test 16.mp3",
supplement: "<b>FL Project File Comment</b><br>ZUN's favorite tune!",
},
{
name: "E0017 Piano Test 17",
author: ["Zzzyt"],
release: "2019-05-30",
tag: ["Music", "Test", "Touhou", "FL"],
length: "01:02",
source: "#O#",
audio: "audio/ZzzytE00/E0017 Piano Test 17.mp3",
supplement: `
Used as <i>THHHS - Stage 1 Theme</i>
<b>FL Project File Comment</b><br>Borrow from touhou... (Eternal Full Moon)<br><br>Hope to express more quietly`,
},
{
name: "E0018 Piano Test 18",
author: ["Zzzyt"],
release: "2019-05-31",
tag: ["Music", "Test", "FL"],
length: "00:09",
source: "#O#",
audio: "audio/ZzzytE00/E0018 Piano Test 18.mp3",
},
{
name: "E0019 Piano Test 19",
author: ["Zzzyt"],
release: "2018-11-04",
tag: ["Music", "Test", "FL"],
length: "00:46",
source: "Zzzty - E0045 Chiptune Test 2",
audio: "audio/ZzzytE00/E0019 Piano Test 19.mp3",
supplement:
"<b>FL Project File Comment</b><br>So funny~~~<br><br>from Chiptune Test 2",
},
{
name: "E0020 Piano Test 20",
author: ["Zzzyt"],
release: "2019-10-27",
tag: ["Music", "Test", "FL"],
length: "00:08",
source: "#O#",
audio: "audio/ZzzytE00/E0020 Piano Test 20.mp3",
supplement: "<b>FL Project File Comment</b><br>From Idea #1 on Nokia",
},
{
name: "E0021 Piano Test 21",
author: ["Zzzyt"],
release: "2019-10-27",
tag: ["Music", "Test", "FL"],
length: "00:49",
source: "#O#",
audio: "audio/ZzzytE00/E0021 Piano Test 21.mp3",
supplement: "<b>FL Project File Comment</b><br>Another Idea recorded",
},
{
name: "E0022 Piano Test 22",
author: ["Zzzyt"],
release: "2019-11-21",
tag: ["Music", "Test", "Touhou", "FL"],
length: "00:27",
source: "#O#",
audio: "audio/ZzzytE00/E0022 Piano Test 22.mp3",
supplement:
'<b>FL Project File Comment</b><br>Made on Jackley class.<br>The strange electric guitar was added under XGN\'s request :D<br>SYR was "frightened" by it<br><br><br>2020/1/29<br>Last Piano Test!',
},
{
name: "E0023 Grandfather Symphony",
author: ["Zzzyt"],
release: "2018-05-27",
tag: ["Music", "Test", "FL"],
length: "00:52",
source: "#O#",
audio: "audio/ZzzytE00/E0023 Grandfather Symphony.mp3",
supplement:
`
Used as <i>Re:ZJSTG - Ending & Staff Theme</i>
<b>FL Project File Comment</b><br>-Call me father, OK?<br>-Grandfather.`,
},
{
name: "E0024 metroFX",
author: ["Zzzyt"],
release: "2018-04-25",
tag: ["SFX", "Test", "FL"],
length: "00:39",
source: "#O#",
audio: "audio/ZzzytE00/E0024 metroFX.mp3",
supplement:
"<b>FL Project File Comment</b><br>2020/1/29<br>To simulate the sound of Nanjing Metro Line 4",
},
{
name: "E0025 Strange Remix",
author: ["Zzzyt"],
release: "2018-02-15",
tag: ["Music", "Test", "FL"],
length: "00:25",
source: "#O#",
audio: "audio/ZzzytE00/E0025 Strange Remix.mp3",
supplement:
"<b>FL Project File Comment</b><br>2020/1/29<br>It's not really a remix..<br>Made in Suzhou",
},
{
name: "E0026 Sky City by Ruan",
author: ["Zzzyt"],
release: "2018-02-19",
tag: ["Music", "Test", "FL"],
length: "01:32",
source: "久石譲 - 月光の雲海",
audio: "audio/ZzzytE00/E0026 Sky City by Ruan.mp3",
supplement:
"<b>FL Project File Comment</b><br>2020/1/29<br>Sampled from an old ruan in Suzhou<br>Just for a test",
},
{
name: "E0027 ZJSTG Zzzyt",
author: ["Zzzyt"],
release: "2019-01-24",
tag: ["Music", "Test", "FL"],
length: "00:47",
source: "#O#",
audio: "audio/ZzzytE00/E0027 ZJSTG Zzzyt.mp3",
supplement: `
Used as <i>Re:ZJSTG - ZYQ's theme</i>
Planned to be used as <i>ZJSTG - Stage 1 Boss Zzzyt's theme</i>
<b>FL Project File Comment</b><br>2020/1/29<br>Originally for HDD's ZJSTG<br>Stage 1 : Zzzyt`,
},
{
name: "E0028 ZJSTG Title Theme",
author: ["Zzzyt"],
release: "2018-12-15",
tag: ["Music", "Test", "FL"],
length: "00:36",
source: "#O#",
audio: "audio/ZzzytE00/E0028 ZJSTG Title Theme.mp3",
supplement: `
Planned to be used as <i>ZJSTG - Title Theme</i>
<b>FL Project File Comment</b><br>2020/1/29<br>Originally for HDD's ZJSTG`,
},
{
name: "E0029 Zzzyt",
author: ["Zzzyt"],
release: "2018-11-21",
tag: ["Music", "Test", "FL"],
length: "00:26",
source: "#O#",
audio: "audio/ZzzytE00/E0029 Zzzyt.mp3",
supplement:
"<b>FL Project File Comment</b><br>2020/1/29<br>I don't remember what's for....<br>Maybe personal BGM<br><br>2020/9/19<br>Reduced bass....Too noisy",
},
{
name: "E0030 Zzzyt 2018",
author: ["Zzzyt"],
release: "2018-11-13",
tag: ["Music", "Test", "8bit", "FL"],
length: "00:10",
source: "#O#",
audio: "audio/ZzzytE00/E0030 Zzzyt 2018.mp3",
supplement:
"<b>FL Project File Comment</b><br>2020/1/29<br>Originally for the 2018 Review Project",
},
{
name: "E0031 Goodnight (Zzzyt Remix)",
author: ["Zzzyt"],
release: "2018-01-16",
tag: ["Music", "Remix", "8bit", "FL"],
length: "00:07",
source: "Kitsune² - Goodnight",
audio: "audio/ZzzytE00/E0031 Goodnight (Zzzyt Remix).mp3",
supplement:
'<b>FL Project File Comment</b><br>Yufu yufy<br><br>2020/2/22<br>The author was originally "XiaoMao 205"',
},
{
name: "E0032 Chiptune (Zzzyt Remix)",
author: ["Zzzyt"],
release: "2018-06-13",
tag: ["Music", "Remix", "8bit", "FL"],
length: "00:21",
source: "Dubmood - Chiptune",
audio: "audio/ZzzytE00/E0032 Chiptune (Zzzyt Remix).mp3",
supplement: "<b>FL Project File Comment</b><br>Chiptune(Remix)",
},
{
name: "E0033 Touhou Test 1",
author: ["Zzzyt"],
release: "2019-06-02",
tag: ["Music", "Remix", "Touhou", "FL"],
length: "00:55",
source: "#A# - 天空の花の都",
audio: "audio/ZzzytE00/E0033 Touhou Test 1.mp3",
supplement: `
Used as <i>THHHS - Stage 2 Theme</i>
`,
},
{
name: "E0034 Touhou Test 2",
author: ["Zzzyt"],
release: "2019-06-02",
tag: ["Music", "Remix", "Touhou", "FL"],
length: "01:58",
source: "#A# - デザイアドライブ",
audio: "audio/ZzzytE00/E0034 Touhou Test 2.mp3",
supplement: `
Used as <i>THHHS - ZJS's Theme</i>
<b>FL Project File Comment</b><br>2020/1/29<br>Because of some loop modifications...and my laziness<br><br>2021/7/17<br>Replaced with "release" version.
`,
},
{
name: "E0035 Vocodex Test 1",
author: ["Zzzyt"],
release: "2019-05-10",
tag: ["Music", "Test", "FL"],
length: "00:07",
source: "#O#",
audio: "audio/ZzzytE00/E0035 Vocodex Test 1.mp3",
},
{
name: "E0036 Vocodex Test 2",
author: ["Zzzyt"],
release: "2020-01-11",
tag: ["Music", "Test", "FL"],
length: "00:10",
source: "Toby Fox - MEGALOVANIA",
audio: "audio/ZzzytE00/E0036 Vocodex Test 2.mp3",
supplement:
"<b>FL Project File Comment</b><br>AOLIGEI!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!",
},
{
name: "E0037 Classical Test 1",
author: ["Zzzyt"],
release: "2018-07-15",
tag: ["Music", "Test", "FL"],
length: "01:18",
source: "#O#",
audio: "audio/ZzzytE00/E0037 Classical Test 1.mp3",
},
{
name: "E0038 Classical Test 2",
author: ["Zzzyt"],
release: "2019-06-27",
tag: ["Music", "Test", "FL"],
length: "01:02",
source: "Zzzyt - Piano #1",
audio: "audio/ZzzytE00/E0038 Classical Test 2.mp3",
supplement:
'<b>FL Project File Comment</b><br>2020/9/26<br>From FL Mobile project "Piano #1"',
},
{
name: "E0039 Classical Test 3",
author: ["Zzzyt"],
release: "2019-06-29",
tag: ["Music", "Test", "FL"],
length: "01:07",
source: "#O#",
audio: "audio/ZzzytE00/E0039 Classical Test 3.mp3",
supplement:
"<b>FL Project File Comment</b><br>2020/9/26<br>Reduced bass...",
},
{
name: "E0040 Classical Test 4",
author: ["Zzzyt"],
release: "2019-07-05",
tag: ["Music", "Test", "FL"],
length: "00:42",
source: "#O#",
audio: "audio/ZzzytE00/E0040 Classical Test 4.mp3",
supplement:
"<b>FL Project File Comment</b><br>Tribute to Hans Zimmer's Interstellar OST.<br><br>2020/9/26<br>Reduced bass...",
},
{
name: "E0041 Classical Test 5",
author: ["Zzzyt"],
release: "2019-07-22",
tag: ["Music", "Test", "FL"],
length: "01:06",
source: "#O#",
audio: "audio/ZzzytE00/E0041 Classical Test 5.mp3",
},
{
name: "E0042 Classical Test 6",
author: ["Zzzyt"],
release: "2019-08-09",
tag: ["Music", "Test", "Touhou", "FL"],
length: "01:39",
source: "#O#",
audio: "audio/ZzzytE00/E0042 Classical Test 6.mp3",
supplement: "<b>FL Project File Comment</b><br>Some Touhou tune comes in??",
},
{
name: "E0043 ByteBeatBasic",
author: ["Zzzyt"],
release: "2018-07-24",
tag: ["Music", "Test", "8bit", "FL"],
length: "01:24",
source: "Rick Astley - Never Gonna Give You Up",
audio: "audio/ZzzytE00/E0043 ByteBeatBasic.mp3",
supplement: `
Used as <i>THHHS - XGN's Theme</i>
<b>FL Project File Comment</b><br>3B music!<br><br>2021/1/29<br>Yes, you are rickrolled.<br>The name comes from \"bytebeat\" in windows93.net.
`,
},
{
name: "E0044 Chiptune Test 1",
author: ["Zzzyt"],
release: "2018-11-04",
tag: ["Music", "Test", "8bit", "FL"],
length: "00:36",
source: "#O#",
audio: "audio/ZzzytE00/E0044 Chiptune Test 1.mp3",
supplement: "<b>FL Project File Comment</b><br>So funny~~~",
},
{
name: "E0045 Chiptune Test 2",
author: ["Zzzyt"],
release: "2018-11-04",
tag: ["Music", "Test", "8bit", "FL"],
length: "00:32",
source: "Zzzyt - E0044 Chiptune 2",
audio: "audio/ZzzytE00/E0045 Chiptune Test 2.mp3",
supplement: "<b>FL Project File Comment</b><br>So funny~~~",
},
{
name: "E0046 Chiptune Test 3",
author: ["Zzzyt"],
release: "2019-04-17",
tag: ["Music", "Test", "8bit", "FL"],
length: "01:31",
source: "#O#",
audio: "audio/ZzzytE00/E0046 Chiptune Test 3.mp3",
supplement: "<b>FL Project File Comment</b><br>Chiptune Test 3",
},
{
name: "E0047 Chiptune Test 4",
author: ["Zzzyt"],
release: "2019-06-22",
tag: ["Music", "Test", "8bit", "FL"],
length: "02:08",
source: "Zzzyt - Song of EBC",
audio: "audio/ZzzytE00/E0047 Chiptune Test 4.mp3",
supplement: `
Used as <i>THHHS - Stage 3 Theme</i>
<b>FL Project File Comment</b><br>aka. Song of EBC<br>because the first three notes are E,B,C
`,
},
{
name: "E0048 Chiptune Test 5",
author: ["Zzzyt"],
release: "2019-07-16",
tag: ["Music", "Test", "8bit", "FL"],
length: "00:47",
source: "#O#",
audio: "audio/ZzzytE00/E0048 Chiptune Test 5.mp3",
supplement:
"<b>FL Project File Comment</b><br>Tribute to some famous piece..",
},
{
name: "E0049 Chiptune Test 6",
author: ["Zzzyt"],
release: "2019-07-18",
tag: ["Music", "Test", "8bit", "FL"],
length: "01:27",
source: "#O#",
audio: "audio/ZzzytE00/E0049 Chiptune Test 6.mp3",
supplement: `
Used as <i>THHHS - ZHD's Theme</i>
<b>FL Project File Comment</b><br>Very fun~~~<br>Like a 70s FC game
`,
},
{
name: "E0050 Chiptune Test 7",
author: ["Zzzyt"],
release: "2019-08-09",
tag: ["Music", "Test", "8bit", "FL"],
length: "01:38",
source: "#O#",
audio: "audio/ZzzytE00/E0050 Chiptune Test 7.mp3",
supplement: `
Used as <i>THHHS - ZKY's Theme</i>
<b>FL Project File Comment</b><br>High BPM test
`,
},
{
name: "E0051 Chiptune Test 8",
author: ["Zzzyt"],
release: "2019-11-23",
tag: ["Music", "Test", "8bit", "FL"],
length: "00:51",
source: "Zzzyt - E0020 Piano Test 20",
audio: "audio/ZzzytE00/E0051 Chiptune Test 8.mp3",
supplement: "<b>FL Project File Comment</b><br>From Piano Test 20",
},
{
name: "E0052 Chiptune Test 9",
author: ["Zzzyt"],
release: "2020-01-01",
tag: ["Music", "Test", "8bit", "FL"],
length: "02:17",
source: "#O#",
audio: "audio/ZzzytE00/E0052 Chiptune Test 9.mp3",
supplement: "<b>FL Project File Comment</b><br>For XGN's TestSTG",
},
{
name: "E0053",
author: ["Zzzyt"],
release: "2020-01-29",
tag: ["Music", "Test", "FL"],
length: "02:26",
source: "#O#",
audio: "audio/ZzzytE00/E0053.mp3",
supplement: "<b>FL Project File Comment</b><br>Also for XGN's TestSTG",
},
{
name: "E0054",
author: ["Zzzyt"],
release: "2020-02-06",
tag: ["Music", "Test", "Touhou", "FL"],
length: "00:44",
source: "#O#",
audio: "audio/ZzzytE00/E0054.mp3",
supplement:
"<b>FL Project File Comment</b><br>This is hard to handle...<br><br>kinda similar to Border of Life by ZUN??",
},
{
name: "E0055 Tetris",
author: ["Zzzyt"],
release: "2020-02-25",
tag: ["Music", "Test", "8bit", "FL"],
length: "00:24",
source: "Zzzyt - E0051 Chiptune Test 8<br>Tetris theme",
audio: "audio/ZzzytE00/E0055 Tetris.mp3",
supplement: "<b>FL Project File Comment</b><br>That classic one..",
},
{
name: "E0056",
author: ["Zzzyt"],
release: "2020-02-26",
tag: ["Music", "Test", "FL"],
length: "00:33",
source: "Zzzyt - E0051 Chiptune Test 8<br>Tetris theme",
audio: "audio/ZzzytE00/E0056.mp3",
supplement:
"<b>FL Project File Comment</b><br>Test to mix Chiptune Test 8 & Tetris",
},
{
name: "E0057",
author: ["Zzzyt"],
release: "2020-02-28",
tag: ["Music", "Test", "8bit", "FL"],
length: "00:29",
source: "Tetris theme",
audio: "audio/ZzzytE00/E0057.mp3",
},
{
name: "E0058",
author: ["Zzzyt"],
release: "2020-03-02",
tag: ["Music", "Test", "FL"],
length: "04:01",
source: "Tetris theme",
audio: "audio/ZzzytE00/E0058.mp3",
},
{
name: "E0059",
author: ["Zzzyt"],
release: "2020-03-02",
tag: ["Music", "Test", "FL"],
length: "00:33",
source: "#O#",
audio: "audio/ZzzytE00/E0059.mp3",
supplement: "<b>FL Project File Comment</b><br>Some amazing arps",
},
{
name: "E0060",
author: ["Zzzyt"],
release: "2020-03-02",
tag: ["Music", "Test", "FL"],
length: "03:31",
source: "Zzzyt - E0058",
audio: "audio/ZzzytE00/E0060.mp3",
supplement: "<b>FL Project File Comment</b><br>Finally....",
},
{
name: "E0061",
author: ["Zzzyt"],
release: "2020-03-03",
tag: ["Music", "Test", "FL"],
length: "00:17",
source: "#O#",
audio: "audio/ZzzytE00/E0061.mp3",
},
{
name: "E0062",
author: ["Zzzyt"],
release: "2020-03-08",
tag: ["Music", "Test", "Touhou", "FL"],
length: "00:26",
source: "#O#",
audio: "audio/ZzzytE00/E0062.mp3",
},
{
name: "E0063",
author: ["Zzzyt"],
release: "2020-03-13",
tag: ["Music", "Test", "FL"],
length: "00:49",
source: "Zzzyt - E0056",
audio: "audio/ZzzytE00/E0063.mp3",
supplement: "<b>FL Project File Comment</b><br>From E0056",
},
{
name: "E0064",
author: ["Zzzyt"],
release: "2020-02-06",
tag: ["Music", "Test", "Touhou", "FL"],
length: "00:41",
source: "Zzzyt - E0054",
audio: "audio/ZzzytE00/E0064.mp3",
supplement:
"<b>FL Project File Comment</b><br>From E0054<br><br>I guess I can handle this",
},
{
name: "E0065 Idea1",
author: ["Zzzyt"],
release: "2020-05-13",
tag: ["Music", "Test", "FL"],
length: "00:12",
source: "Zzzyt - Idea1 (mobile)",
audio: "audio/ZzzytE00/E0065 Idea1.mp3",
supplement:
"<b>FL Project File Comment</b><br>From FL Mobile.<br>Normalized.",
},
{
name: "E0066 Idea2",
author: ["Zzzyt"],
release: "2020-05-13",
tag: ["Music", "Test", "FL"],
length: "00:23",
source: "Zzzyt - Idea2 (mobile)",
audio: "audio/ZzzytE00/E0066 Idea2.mp3",
supplement: "<b>FL Project File Comment</b><br>From FL Mobile",
},
{
name: "E0067 Idea3",
author: ["Zzzyt"],
release: "2020-05-13",
tag: ["Music", "Test", "FL"],
length: "00:16",
source: "Zzzyt - Idea3 (mobile)",
audio: "audio/ZzzytE00/E0067 Idea3.mp3",
supplement: "<b>FL Project File Comment</b><br>From FL Mobile",
},
{
name: "E0068 Idea4",
author: ["Zzzyt"],
release: "2020-05-13",
tag: ["Music", "Test", "FL"],
length: "00:14",
source: "Zzzyt - Idea4 (mobile)",
audio: "audio/ZzzytE00/E0068 Idea4.mp3",
supplement: "<b>FL Project File Comment</b><br>From FL Mobile.",
},
{
name: "E0069 Idea5",
author: ["Zzzyt"],
release: "2020-05-13",
tag: ["Music", "Test", "FL"],
length: "00:14",
source: "Zzzyt - Idea5 (mobile)",
audio: "audio/ZzzytE00/E0069 Idea5.mp3",
supplement: "<b>FL Project File Comment</b><br>From FL Mobile.",
},
{
name: "E0070 Idea6",
author: ["Zzzyt"],
release: "2020-05-13",
tag: ["Music", "Test", "FL"],
length: "00:10",
source: "Zzzyt - Idea6 (mobile)",
audio: "audio/ZzzytE00/E0070 Idea6.mp3",
supplement: "<b>FL Project File Comment</b><br>From FL Mobile.",
},
{
name: "E0071 Idea7",
author: ["Zzzyt"],
release: "2020-05-13",
tag: ["Music", "Test", "FL"],
length: "00:20",
source: "Zzzyt - Idea7 (mobile)",
audio: "audio/ZzzytE00/E0071 Idea7.mp3",
supplement: "<b>FL Project File Comment</b><br>From FL Mobile.",
},
{
name: "E0072 Idea8",
author: ["Zzzyt"],
release: "2020-05-13",
tag: ["Music", "Test", "FL"],
length: "01:20",
source: "Zzzyt - Idea8 (mobile)",
audio: "audio/ZzzytE00/E0072 Idea8.mp3",
supplement:
"<b>FL Project File Comment</b><br>From FL Mobile.<br><br>Unused song in Touhou Rune Legend.",
},
{
name: "E0073 Idea9",
author: ["Zzzyt"],
release: "2020-05-13",
tag: ["Music", "Test", "Touhou", "FL"],
length: "00:55",
source: "Zzzyt - Idea9 (mobile)",
audio: "audio/ZzzytE00/E0073 Idea9.mp3",
supplement: "<b>FL Project File Comment</b><br>From FL Mobile.",
},
{
name: "E0074 Idea10",
author: ["Zzzyt"],
release: "2020-05-13",
tag: ["Music", "Test", "FL"],
length: "00:16",
source: "Zzzyt - Idea10 (mobile)",
audio: "audio/ZzzytE00/E0074 Idea10.mp3",
supplement: "<b>FL Project File Comment</b><br>From FL Mobile.",
},
{
name: "E0075 Idea11",
author: ["Zzzyt"],
release: "2020-05-13",
tag: ["Music", "Test", "Touhou", "FL"],
length: "00:08",
source: "Zzzyt - Idea11 (mobile)",
audio: "audio/ZzzytE00/E0075 Idea11.mp3",
supplement: "<b>FL Project File Comment</b><br>From FL Mobile.",
},
{
name: "E0076 Idea12",
author: ["Zzzyt"],
release: "2020-05-13",
tag: ["Music", "Test", "Touhou", "FL"],
length: "00:14",
source: "Zzzyt - Idea12 (mobile)",
audio: "audio/ZzzytE00/E0076 Idea12.mp3",
supplement:
"<b>FL Project File Comment</b><br>From FL Mobile.<br><br>A remix of Desire Drive by Team Shanghai Alice.",
},
{
name: "E0077 Idea13",
author: ["Zzzyt"],
release: "2020-05-13",
tag: ["Music", "Test", "FL"],
length: "00:29",
source: "Zzzyt - Idea13 (mobile)",
audio: "audio/ZzzytE00/E0077 Idea13.mp3",
supplement:
"<b>FL Project File Comment</b><br>From FL Mobile.<br><br>A remix of Canon in D Major",
},
{
name: "E0078 Idea14",
author: ["Zzzyt"],
release: "2020-05-13",
tag: ["Music", "Test", "Touhou", "FL"],
length: "00:30",
source: "Zzzyt - Idea14 (mobile)",
audio: "audio/ZzzytE00/E0078 Idea14.mp3",
supplement:
"<b>FL Project File Comment</b><br>From FL Mobile.<br><br>A remix of Beloved Gensokyo by Team Shanghai Alice.",
},
{
name: "E0079 Idea15",
author: ["Zzzyt"],
release: "2020-05-13",
tag: ["Music", "Test", "8bit", "FL"],
length: "02:40",
source: "Zzzyt - Idea15 (mobile)",
audio: "audio/ZzzytE00/E0079 Idea15.mp3",
supplement: `
Used as <i>ZJSTG2 - Stage 3's Theme</i>
<b>FL Project File Comment</b><br>From FL Mobile.`,
},
{
name: "E0080 Idea16",
author: ["Zzzyt"],
release: "2020-05-13",
tag: ["Music", "Test", "FL"],
length: "01:08",
source: "Zzzyt - Idea16 (mobile)",
audio: "audio/ZzzytE00/E0080 Idea16.mp3",
supplement: "<b>FL Project File Comment</b><br>From FL Mobile.",
},
{
name: "E0081 Idea17",
author: ["Zzzyt"],
release: "2020-05-13",
tag: ["Music", "Test", "Touhou", "FL"],
length: "00:08",
source: "Zzzyt - Idea17 (mobile)",
audio: "audio/ZzzytE00/E0081 Idea17.mp3",
supplement: "<b>FL Project File Comment</b><br>From FL Mobile.",
},
{
name: "E0082 Idea18",
author: ["Zzzyt"],
release: "2020-05-13",
tag: ["Music", "Test", "FL"],
length: "02:46",
source: "Zzzyt - Idea18 (mobile)",
audio: "audio/ZzzytE00/E0082 Idea18.mp3",
supplement: "<b>FL Project File Comment</b><br>From FL Mobile.",
},
{
name: "E0083 Idea19",
author: ["Zzzyt"],
release: "2020-05-13",
tag: ["Music", "Test", "Touhou", "FL"],
length: "00:29",
source: "Zzzyt - Idea19 (mobile)",
audio: "audio/ZzzytE00/E0083 Idea19.mp3",
supplement: "<b>FL Project File Comment</b><br>From FL Mobile.",
},
{
name: "E0084 Idea20",
author: ["Zzzyt"],
release: "2020-05-13",
tag: ["Music", "Test", "FL"],
length: "01:26",
source: "Zzzyt - Idea20 (mobile)",
audio: "audio/ZzzytE00/E0084 Idea20.mp3",
supplement: "<b>FL Project File Comment</b><br>From FL Mobile.",
},
{
name: "E0085 Idea21",
author: ["Zzzyt"],
release: "2020-05-13",
tag: ["Music", "Test", "Touhou", "FL"],
length: "00:28",
source: "Zzzyt - Idea21 (mobile)",
audio: "audio/ZzzytE00/E0085 Idea21.mp3",
supplement:
"<b>FL Project File Comment</b><br>From FL Mobile.<br><br>A remix of Broken Moon by Team Shanghai Alice.<br>Well I guess that's the right translation.....",
},
{
name: "E0086 Idea22",
author: ["Zzzyt"],
release: "2020-05-13",
tag: ["Music", "Test", "8bit", "FL"],
length: "00:48",
source: "Zzzyt - Idea22 (mobile)",
audio: "audio/ZzzytE00/E0086 Idea22.mp3",
supplement: "<b>FL Project File Comment</b><br>From FL Mobile.",
},
{
name: "E0087 Idea23",
author: ["Zzzyt"],
release: "2020-06-26",
tag: ["Music", "Test", "FL"],
length: "00:34",
source: "Zzzyt - Idea23 (mobile)",
audio: "audio/ZzzytE00/E0087 Idea23.mp3",
supplement:
'<b>FL Project File Comment</b><br>From FL Mobile.<br><br>A remix of "New Treasure Island"',
},
{
name: "E0088 Idea24",
author: ["Zzzyt"],
release: "2020-06-26",
tag: ["Music", "Test", "FL"],
length: "00:17",
source: "Zzzyt - Idea24 (mobile)",
audio: "audio/ZzzytE00/E0088 Idea24.mp3",
supplement:
"<b>FL Project File Comment</b><br>From FL Mobile.<br><br>A remix of Chiptune Test 4 (Song of EBC).",
},
{
name: "E0089 Idea25",
author: ["Zzzyt"],
release: "2020-06-26",
tag: ["Music", "Test", "FL"],
length: "00:08",
source: "Zzzyt - Idea25 (mobile)",
audio: "audio/ZzzytE00/E0089 Idea25.mp3",
supplement: "<b>FL Project File Comment</b><br>From FL Mobile.",
},
{
name: "E0090 Idea26",
author: ["Zzzyt"],
release: "2020-06-26",
tag: ["Music", "Test", "FL"],
length: "00:56",
source: "Zzzyt - Idea26 (mobile)",
audio: "audio/ZzzytE00/E0090 Idea26.mp3",
supplement:
'<b>FL Project File Comment</b><br>From FL Mobile.<br><br>A remix of "Marble Machine" by Wintergatan',
},
{
name: "E0091 Idea27",
author: ["Zzzyt"],
release: "2020-06-26",
tag: ["Music", "Test", "Touhou", "FL"],
length: "00:16",
source: "Zzzyt - Idea27 (mobile)",
audio: "audio/ZzzytE00/E0091 Idea27.mp3",
supplement:
"<b>FL Project File Comment</b><br>From FL Mobile.<br><br>Yet another remix of Desire Drive.",
},
{
name: "E0092 Idea28",
author: ["Zzzyt"],
release: "2020-06-26",
tag: ["Music", "Test", "FL"],
length: "00:16",
source: "Zzzyt - Idea28 (mobile)",
audio: "audio/ZzzytE00/E0092 Idea28.mp3",
supplement: "<b>FL Project File Comment</b><br>From FL Mobile.",
},
{
name: "E0093 Idea29",
author: ["Zzzyt"],
release: "2020-06-26",
tag: ["Music", "Test", "Touhou", "FL"],
length: "00:52",
source: "Zzzyt - Idea29 (mobile)",
audio: "audio/ZzzytE00/E0093 Idea29.mp3",
supplement: "<b>FL Project File Comment</b><br>From FL Mobile.",
},
{
name: "E0094 Idea30",
author: ["Zzzyt"],
release: "2020-06-26",
tag: ["Music", "Test", "Touhou", "FL"],
length: "01:21",
source: "Zzzyt - Idea30 (mobile)",
audio: "audio/ZzzytE00/E0094 Idea30.mp3",
supplement: "<b>FL Project File Comment</b><br>From FL Mobile.",
},
{
name: "E0095 Idea31",
author: ["Zzzyt"],
release: "2020-06-26",
tag: ["Music", "Test", "Touhou", "FL"],
length: "00:17",
source: "Zzzyt - Idea31 (mobile)",
audio: "audio/ZzzytE00/E0095 Idea31.mp3",