-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1802 lines (1598 loc) · 334 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>library_explorer</title>
<style>html {
font-family: sans-serif;
background-color: hsl(0, 0%, 20%);
margin: 0;
height: 100%;
overflow: -moz-scrollbars-vertical;
overflow-y: scroll;
}
body {
margin: 0;
display: flex;
flex-direction: column;
height: 100%;
}
.navbar {
background-color: white;
overflow: hidden;
opacity: 1;
height: 120px;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 101;
}
#nav-header {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin-top: 12px;
margin-bottom: 6px;
}
#title {
letter-spacing: .117em;
padding-left: 26px;
margin: 0;
}
#command-subtitle-container {
position: fixed;
top: 99px;
letter-spacing: .01em;
font-family: monospace;
color: white;
padding: 4px;
padding-bottom: 8px;
padding-left: 26px;
background-color: hsl(0, 0%, 20%);
border-radius: 0 12px 0 0;
z-index: 102;
width: 100%;
margin: 0;
}
#command-subtitle {
margin: 0;
}
#nav-menu {
display: flex;
flex-direction: row;
justify-content: start;
align-items: center;
}
.nav-menu-button, #guide-container>div>h2, #help-container>div>h2, #about-container>div>h2{
font-weight: normal;
font-size: large;
letter-spacing: .1em;
padding: 12px;
padding-top: 6px;
padding-bottom: 6px;
margin-left: 26px;
border-radius: 22px;
-webkit-user-select: none;
}
.nav-menu-button:hover, #guide-container>div>h2:hover {
cursor: pointer;
background-color: hsl(0, 0%, 80%);
}
#guide-container>div>h2, #about-container>div>h2 {
margin: 0px;
}
#about-container>div:last-of-type {
color: black;
text-align: center;
line-height: 1.8;
}
#about-container>div>a {
color: black;
text-align: center;
}
h4 {
margin: auto;
}
#full-path-display {
height: 20px;
padding-left: 26px;
padding-bottom: 3px;
}
code {
font-family: 'Courier New', Courier, monospace;
font-size: 11pt;
color: white;
background-color: hsl(0, 0%, 20%);
padding: 4px;
border-radius: 8px;
line-height: 2em;
}
.search-box {
padding-right: 26px;
}
.search-nav {
display: flex;
flex-direction: row;
}
.search-text {
border-radius: 18px;
height: 36px;
width: 300px;
padding-left: 12px;
border: solid;
border-width: 1px;
outline: none;
}
.search-button {
border-radius: 18px;
height: 36px;
width: 36px;
border: solid;
border-width: 1px;
outline: none;
background-color: white;
margin-left: 6px;
}
.hover-button:hover {
cursor: pointer;
background-color: rgba(105, 105, 105, 0.507)
}
.click-button:active {
background-color: hsl(0, 0%, 90%);
}
#search-results {
display: table-row;
font-size: small;
text-align: left;
text-indent: 16px;
}
#guide-container {
display: block;
flex-direction: column;
color: black;
}
#guide-container>div, #help-container>div, #about-container {
padding-left: 18px;
padding-right: 18px;
margin-top: 12px;
}
.icon {
height: 30px;
width: 30px;
}
.main {
flex: 1 0 auto;
display: flex;
flex-direction: column;
top: 130px;
width: 100%;
}
#explorer-container {
flex: 1 0 auto;
display: flex;
flex-direction: column;
margin-left: 0px;
margin-top: 123px;
}
ul {
list-style:none;
padding-left: 1em;
height: 0;
overflow: hidden;
z-index: 0;
}
ul.show-list {
height: auto;
padding-top: 3px;
padding-bottom: 3px;
padding-left: 18px;
padding-right: 3px;
}
li {
background-color: white;
border-radius: 12px;
padding-top: 3px;
padding-bottom: 3px;
padding-left: 8px;
padding-right: 25px;
border-width: 3px;
border: solid;
border-color: rgba(0, 0, 0, 0);
z-index: 0;
background-clip: padding-box;
margin-bottom: -3px;
}
.library-item-menu-button {
margin-left: 20px;
cursor: pointer;
border-radius: 3px;
}
.library-item-menu-button:hover {
background-color: rgba(105, 105, 105, 0.507);
box-shadow: 0 0 0 3px rgba(105, 105, 105, 0.507);
}
.slide-open-text {
max-height: 0;
overflow: hidden;
transition: max-height .5s;
transition-delay: 0s;
margin-left: 12px;
}
.close-sidebar-button {
text-align: center;
float: right;
margin: 6px;
font-size: small;
padding: 12px;
padding-top: 8px;
height: 10px;
width: 10px;
overflow: visible;
color: hsl(0, 0%, 20%);
border-radius: 12px;
}
.close-sidebar-button:hover {
background-color: hsl(0, 0%, 80%);
cursor: pointer;
}
#about-container>div>p {
margin-left: 12px;
}
.hidden {
position:absolute;
left:-10000px;
top:-10000px;
width:1px;
height:1px;
overflow:hidden;
}
.hover-details {
margin-left: 26px;
font-weight: bold;
font-size: small;
padding: 1px;
height: auto;
width: auto;
}
.album {
font-weight: normal;
}
.hide {
height: 0;
padding-top: 0;
padding-bottom: 0;
overflow: hidden;
}
.library {
font-weight: bold;
}
.collection {
font-weight: bold;
}
.list-icon {
height: 1em;
width: 1em;
margin-right: 0.5em;
}
.fade ul {
height: 0;
}
.fade ul.show-list {
height: auto;
}
.library-item {
transition: background-color .5s linear;
}
#library-explorer {
top: auto;
position: relative;
padding-right: 18px;
margin-top: 0;
margin-left:0px;
z-index: 1;
}
.insights-and-guide-container {
display: block;
flex-direction: column;
}
#insights>ul {
padding: 6px;
float:left;
}
#insights>p {
text-align: center;
}
.insights, .guide {
border-radius: 0 12px 12px 0;
padding-top: 3px;
font-size: small;
padding: 0;
position: fixed;
top: 0;
left: 0;
background-color:white;
overflow:auto;
word-wrap: none;
z-index: 3;
width: 400px;
visibility: hidden;
margin-top: 126px;
height: 100vh;
border: solid;
border-width: 3px;
border-color: hsl(0, 0%, 20%);
}
#insights-expander-button {
float: right;
margin-right: 12px;
}
#insights-expander-button:hover {
cursor: pointer;
}
.insights>ul {
cursor: default;
}
.largest-folders {
display: block;
font-weight: bold;
}
.largest-folders:hover {
cursor: pointer;
box-shadow: 0 0 0 3px rgba(105, 105, 105, 0.507);
}
.largest-folders>span {
font-weight: normal;
overflow: hidden;
}
.current-search-result {
text-decoration: underline;
font-weight: bold;
}
#library-item-modal {
border-radius: 12px;
position: absolute;
z-index: 100;
background-color: white;
text-align: right;
padding-bottom: 10px;
overflow: hidden;
visibility: hidden;
background-color: hsl(0, 0%, 90%);
box-shadow: 2px 2px 7px black;
}
#library-item-modal.show-modal {
visibility: visible;
height: auto;
width: auto;
}
.modal-menu-item {
display: flex;
justify-content: flex-start;
padding-top: 3px;
padding-bottom: 3px;
padding-left: 12px;
padding-right: 12px;
}
#library-item-modal>textarea {
font-family: sans-serif;
border: none;
outline:none;
resize: none;
height: 2em;
display: flex;
padding-top: 3px;
padding-bottom: 3px;
background-color: hsl(0, 0%, 90%);
}
.modal-menu-item>a {
font-size: small;
color: black;
text-decoration: none;
padding: 3px;
border-radius: 8px;
}
.modal-menu-item>a:hover {
background-color: lightgray;
cursor: pointer;
}
#disabler {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: .5;
visibility: hidden;
z-index: 99;
}
#icon-container>a {
padding-top: 20px;
color: black;
justify-content: center;
}
#footer {
margin-top: auto;
color: white;
text-align: center;
position: relative;
bottom: 0;
width: 100%;
line-height: 1.8;
flex-shrink: 0;
}
.icon-link {
color: white;
}</style>
</head>
<body>
<div class="insights-and-guide-container">
<div id="insights" class="insights">
<p>These are the paths with the most albums</p>
<ul class="show-list">
<li class="largest-folders" data-total-albums="928" data-total-audio-files="9855" data-full-path="Y:">Y:</li><li class="largest-folders" data-total-albums="876" data-total-audio-files="9290" data-full-path="Y:\Music">Y:\Music</li><li class="largest-folders" data-total-albums="172" data-total-audio-files="1535" data-full-path="Y:\Music\DJ Tracks">Y:\Music\DJ Tracks</li><li class="largest-folders" data-total-albums="97" data-total-audio-files="584" data-full-path="Y:\Music\Linkin Park">Y:\Music\Linkin Park</li><li class="largest-folders" data-total-albums="65" data-total-audio-files="427" data-full-path="Y:\Music\DJ Tracks\KFA">Y:\Music\DJ Tracks\KFA</li><li class="largest-folders" data-total-albums="59" data-total-audio-files="543" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps">Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps</li><li class="largest-folders" data-total-albums="55" data-total-audio-files="360" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013">Y:\Music\Daft Punk - Discography - 1994-2013</li><li class="largest-folders" data-total-albums="42" data-total-audio-files="107" data-full-path="Y:\Music\Linkin Park\Singles">Y:\Music\Linkin Park\Singles</li><li class="largest-folders" data-total-albums="35" data-total-audio-files="112" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles">Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles</li><li class="largest-folders" data-total-albums="27" data-total-audio-files="282" data-full-path="Y:\Music\DJ Tracks\Psytrance">Y:\Music\DJ Tracks\Psytrance</li></ul></div></div><div class="main"><div id="explorer-container"><ul id="library-explorer" class="show-list"><li class="library library-item" data-contained-collections="1" data-contained-albums="0" data-total-albums="928" data-total-audio-files="9855" data-full-path="Y:" data-shortname="Y:">Y:<ul><li class="path library-item" data-total-albums="28" data-total-audio-files="200" data-full-path="Y:\#recycle" data-shortname="#recycle">#recycle<ul><li class="library library-item" data-contained-collections="4" data-contained-albums="2" data-total-albums="25" data-total-audio-files="175" data-full-path="Y:\#recycle\Music" data-shortname="Music">Music<ul><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="1" data-full-path="Y:\#recycle\Music\Bob Dylan" data-shortname="Bob Dylan">Bob Dylan<ul><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\#recycle\Music\Bob Dylan\Christmas In The Heart" data-shortname="Christmas In The Heart">Christmas In The Heart</li></ul></li><li class="collection library-item" data-contained-albums="9" data-total-albums="9" data-total-audio-files="20" data-full-path="Y:\#recycle\Music\CCR" data-shortname="CCR">CCR<ul><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\#recycle\Music\CCR\1968 - Creedence Clearwater Revival" data-shortname="1968 - Creedence Clearwater Revival">1968 - Creedence Clearwater Revival</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\#recycle\Music\CCR\1969 - Bayou Country" data-shortname="1969 - Bayou Country">1969 - Bayou Country</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\#recycle\Music\CCR\1969 - Green River" data-shortname="1969 - Green River">1969 - Green River</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\#recycle\Music\CCR\1969 - Willy and the Poor Boys" data-shortname="1969 - Willy and the Poor Boys">1969 - Willy and the Poor Boys</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\#recycle\Music\CCR\1970 - Cosmo's Factory" data-shortname="1970 - Cosmo's Factory">1970 - Cosmo's Factory</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\#recycle\Music\CCR\1970 - Pendulum" data-shortname="1970 - Pendulum">1970 - Pendulum</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\#recycle\Music\CCR\1972 - Mardi Gras" data-shortname="1972 - Mardi Gras">1972 - Mardi Gras</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\#recycle\Music\CCR\1973 - Live In Europe" data-shortname="1973 - Live In Europe">1973 - Live In Europe</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\#recycle\Music\CCR\1980 - The Concert" data-shortname="1980 - The Concert">1980 - The Concert</li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="1" data-full-path="Y:\#recycle\Music\DILT" data-shortname="DILT">DILT<ul><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\#recycle\Music\DILT\Mixes" data-shortname="Mixes">Mixes</li></ul></li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\#recycle\Music\Out of System Transfer" data-shortname="Out of System Transfer">Out of System Transfer</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\#recycle\Music\Salvation_Army_Drum_Set -The_Dissonance_of_Roland_the_Thinker" data-shortname="Salvation_Army_Drum_Set -The_Dissonance_of_Roland_the_Thinker">Salvation_Army_Drum_Set -The_Dissonance_of_Roland_the_Thinker</li><li class="collection library-item" data-contained-albums="12" data-total-albums="12" data-total-audio-files="144" data-full-path="Y:\#recycle\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope" data-shortname="The Tragically Hip - Discography [FLAC] [h33t] - Kitlope">The Tragically Hip - Discography [FLAC] [h33t] - Kitlope<ul><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\#recycle\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip (Self Titled) 1987" data-shortname="The Tragically Hip (Self Titled) 1987">The Tragically Hip (Self Titled) 1987</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\#recycle\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip - Day For Night 1994" data-shortname="The Tragically Hip - Day For Night 1994">The Tragically Hip - Day For Night 1994</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\#recycle\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip - Fully Completely 1992" data-shortname="The Tragically Hip - Fully Completely 1992">The Tragically Hip - Fully Completely 1992</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\#recycle\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip - In Between Evolution 2004" data-shortname="The Tragically Hip - In Between Evolution 2004">The Tragically Hip - In Between Evolution 2004</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\#recycle\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip - In Violet Light 2002" data-shortname="The Tragically Hip - In Violet Light 2002">The Tragically Hip - In Violet Light 2002</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\#recycle\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip - Live Between Us 1997" data-shortname="The Tragically Hip - Live Between Us 1997">The Tragically Hip - Live Between Us 1997</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\#recycle\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip - Music @ Work 2000" data-shortname="The Tragically Hip - Music @ Work 2000">The Tragically Hip - Music @ Work 2000</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\#recycle\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip - Phantom Power 1998" data-shortname="The Tragically Hip - Phantom Power 1998">The Tragically Hip - Phantom Power 1998</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\#recycle\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip - Road Apples 1991" data-shortname="The Tragically Hip - Road Apples 1991">The Tragically Hip - Road Apples 1991</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\#recycle\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip - Trouble at the Henhouse 1996" data-shortname="The Tragically Hip - Trouble at the Henhouse 1996">The Tragically Hip - Trouble at the Henhouse 1996</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\#recycle\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip - Up to Here 1989" data-shortname="The Tragically Hip - Up to Here 1989">The Tragically Hip - Up to Here 1989</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\#recycle\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip - World Container 2006" data-shortname="The Tragically Hip - World Container 2006">The Tragically Hip - World Container 2006</li></ul></li></ul></li><li class="path library-item" data-total-albums="1" data-total-audio-files="5" data-full-path="Y:\#recycle\Secrets" data-shortname="Secrets">Secrets<ul><li class="path library-item" data-total-albums="1" data-total-audio-files="5" data-full-path="Y:\#recycle\Secrets\Music" data-shortname="Music">Music<ul><li class="library library-item" data-contained-collections="1" data-contained-albums="0" data-total-albums="1" data-total-audio-files="5" data-full-path="Y:\#recycle\Secrets\Music\Music" data-shortname="Music">Music<ul><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="5" data-full-path="Y:\#recycle\Secrets\Music\Music\Johnny Mathis" data-shortname="Johnny Mathis">Johnny Mathis<ul><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\#recycle\Secrets\Music\Music\Johnny Mathis\very best of" data-shortname="very best of">very best of</li></ul></li></ul></li></ul></li></ul></li><li class="library library-item" data-contained-collections="2" data-contained-albums="0" data-total-albums="2" data-total-audio-files="20" data-full-path="Y:\#recycle\incomplete" data-shortname="incomplete">incomplete<ul><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="10" data-full-path="Y:\#recycle\incomplete\Codex VI__NYojgW" data-shortname="Codex VI__NYojgW">Codex VI__NYojgW<ul><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\#recycle\incomplete\Codex VI__NYojgW\Codex VI" data-shortname="Codex VI">Codex VI</li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="10" data-full-path="Y:\#recycle\incomplete\TOOL - Fear Inoculum (Deluxe) (2019) Mp3 (320kbps) [Hunter]" data-shortname="TOOL - Fear Inoculum (Deluxe) (2019) Mp3 (320kbps) [Hunter]">TOOL - Fear Inoculum (Deluxe) (2019) Mp3 (320kbps) [Hunter]<ul><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\#recycle\incomplete\TOOL - Fear Inoculum (Deluxe) (2019) Mp3 (320kbps) [Hunter]\TOOL - Fear Inoculum (Deluxe) (2019)" data-shortname="TOOL - Fear Inoculum (Deluxe) (2019)">TOOL - Fear Inoculum (Deluxe) (2019)</li></ul></li></ul></li></ul></li><li class="library library-item" data-contained-collections="2" data-contained-albums="0" data-total-albums="10" data-total-audio-files="179" data-full-path="Y:\Movies" data-shortname="Movies">Movies<ul><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="42" data-full-path="Y:\Movies\Afro.Samurai-The.Complete.Collection.MemoryWipe" data-shortname="Afro.Samurai-The.Complete.Collection.MemoryWipe">Afro.Samurai-The.Complete.Collection.MemoryWipe<ul><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Movies\Afro.Samurai-The.Complete.Collection.MemoryWipe\The Rza - Afro Samurai Resurrection Soundtrack" data-shortname="The Rza - Afro Samurai Resurrection Soundtrack">The Rza - Afro Samurai Resurrection Soundtrack</li><li class="album library-item" data-contained-audio-files="25" data-full-path="Y:\Movies\Afro.Samurai-The.Complete.Collection.MemoryWipe\The Rza - Afro Samurai Series Soundtrack" data-shortname="The Rza - Afro Samurai Series Soundtrack">The Rza - Afro Samurai Series Soundtrack</li></ul></li><li class="collection library-item" data-contained-albums="8" data-total-albums="8" data-total-audio-files="137" data-full-path="Y:\Movies\Halloween" data-shortname="Halloween">Halloween<ul><li class="album library-item" data-contained-audio-files="18" data-full-path="Y:\Movies\Halloween\Vol. 1" data-shortname="Vol. 1">Vol. 1</li><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Movies\Halloween\Vol. 2" data-shortname="Vol. 2">Vol. 2</li><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Movies\Halloween\Vol. 3" data-shortname="Vol. 3">Vol. 3</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Movies\Halloween\Vol. 4" data-shortname="Vol. 4">Vol. 4</li><li class="album library-item" data-contained-audio-files="18" data-full-path="Y:\Movies\Halloween\Vol. 5" data-shortname="Vol. 5">Vol. 5</li><li class="album library-item" data-contained-audio-files="18" data-full-path="Y:\Movies\Halloween\Vol. 6" data-shortname="Vol. 6">Vol. 6</li><li class="album library-item" data-contained-audio-files="18" data-full-path="Y:\Movies\Halloween\Vol. 7" data-shortname="Vol. 7">Vol. 7</li><li class="album library-item" data-contained-audio-files="18" data-full-path="Y:\Movies\Halloween\Vol. 8" data-shortname="Vol. 8">Vol. 8</li></ul></li></ul></li><li class="library library-item" data-contained-collections="37" data-contained-albums="51" data-total-albums="876" data-total-audio-files="9290" data-full-path="Y:\Music" data-shortname="Music">Music<ul><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\2002 - Ten Years And Running" data-shortname="2002 - Ten Years And Running">2002 - Ten Years And Running</li><li class="library library-item" data-contained-collections="2" data-contained-albums="0" data-total-albums="4" data-total-audio-files="42" data-full-path="Y:\Music\A State Of Trance 850 (The Official Album) (Mixed by Armin van Buuren) (Vyze)" data-shortname="A State Of Trance 850 (The Official Album) (Mixed by Armin van Buuren) (Vyze)">A State Of Trance 850 (The Official Album) (Mixed by Armin van Buuren) (Vyze)<ul><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="2" data-full-path="Y:\Music\A State Of Trance 850 (The Official Album) (Mixed by Armin van Buuren) (Vyze)\Mixed" data-shortname="Mixed">Mixed<ul><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\A State Of Trance 850 (The Official Album) (Mixed by Armin van Buuren) (Vyze)\Mixed\CD 1" data-shortname="CD 1">CD 1</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\A State Of Trance 850 (The Official Album) (Mixed by Armin van Buuren) (Vyze)\Mixed\CD 2" data-shortname="CD 2">CD 2</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="40" data-full-path="Y:\Music\A State Of Trance 850 (The Official Album) (Mixed by Armin van Buuren) (Vyze)\Unmixed" data-shortname="Unmixed">Unmixed<ul><li class="album library-item" data-contained-audio-files="20" data-full-path="Y:\Music\A State Of Trance 850 (The Official Album) (Mixed by Armin van Buuren) (Vyze)\Unmixed\CD1" data-shortname="CD1">CD1</li><li class="album library-item" data-contained-audio-files="20" data-full-path="Y:\Music\A State Of Trance 850 (The Official Album) (Mixed by Armin van Buuren) (Vyze)\Unmixed\CD2" data-shortname="CD2">CD2</li></ul></li></ul></li><li class="album library-item" data-contained-audio-files="43" data-full-path="Y:\Music\A State Of Trance Ibiza 2018 (Mixed by Armin Van Buuren) (2018)" data-shortname="A State Of Trance Ibiza 2018 (Mixed by Armin Van Buuren) (2018)">A State Of Trance Ibiza 2018 (Mixed by Armin Van Buuren) (2018)</li><li class="library library-item" data-contained-collections="2" data-contained-albums="0" data-total-albums="4" data-total-audio-files="63" data-full-path="Y:\Music\A State of Trance Year Mix 2017 (Mixed by Armin van Buuren) (Vyze)" data-shortname="A State of Trance Year Mix 2017 (Mixed by Armin van Buuren) (Vyze)">A State of Trance Year Mix 2017 (Mixed by Armin van Buuren) (Vyze)<ul><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="2" data-full-path="Y:\Music\A State of Trance Year Mix 2017 (Mixed by Armin van Buuren) (Vyze)\Mix" data-shortname="Mix">Mix<ul><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\A State of Trance Year Mix 2017 (Mixed by Armin van Buuren) (Vyze)\Mix\CD 1" data-shortname="CD 1">CD 1</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\A State of Trance Year Mix 2017 (Mixed by Armin van Buuren) (Vyze)\Mix\CD 2" data-shortname="CD 2">CD 2</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="61" data-full-path="Y:\Music\A State of Trance Year Mix 2017 (Mixed by Armin van Buuren) (Vyze)\Split" data-shortname="Split">Split<ul><li class="album library-item" data-contained-audio-files="53" data-full-path="Y:\Music\A State of Trance Year Mix 2017 (Mixed by Armin van Buuren) (Vyze)\Split\CD 1" data-shortname="CD 1">CD 1</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\A State of Trance Year Mix 2017 (Mixed by Armin van Buuren) (Vyze)\Split\CD 2" data-shortname="CD 2">CD 2</li></ul></li></ul></li><li class="collection library-item" data-contained-albums="9" data-total-albums="9" data-total-audio-files="117" data-full-path="Y:\Music\Aqua" data-shortname="Aqua">Aqua<ul><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Aqua\1997.Aquarium" data-shortname="1997.Aquarium">1997.Aquarium</li><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Music\Aqua\1997.Aquarium (Limited Christmas Edition)" data-shortname="1997.Aquarium (Limited Christmas Edition)">1997.Aquarium (Limited Christmas Edition)</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Aqua\1998.Aqua Mania Remix" data-shortname="1998.Aqua Mania Remix">1998.Aqua Mania Remix</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Aqua\1998.Aqua Mania Remix Volume 1" data-shortname="1998.Aqua Mania Remix Volume 1">1998.Aqua Mania Remix Volume 1</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Aqua\1998.Bubble Mix" data-shortname="1998.Bubble Mix">1998.Bubble Mix</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Aqua\1999.Dance Remixes '99" data-shortname="1999.Dance Remixes '99">1999.Dance Remixes '99</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Aqua\2000.Aquarius" data-shortname="2000.Aquarius">2000.Aquarius</li><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\Aqua\2002.Cartoon Heroes - The Best Of Aqua" data-shortname="2002.Cartoon Heroes - The Best Of Aqua">2002.Cartoon Heroes - The Best Of Aqua</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Aqua\2011.Megalomania" data-shortname="2011.Megalomania">2011.Megalomania</li></ul></li><li class="album library-item" data-contained-audio-files="35" data-full-path="Y:\Music\Armin van Buuren - A State Of Trance 851 (15.02.2018) SBD Split Tracks" data-shortname="Armin van Buuren - A State Of Trance 851 (15.02.2018) SBD Split Tracks">Armin van Buuren - A State Of Trance 851 (15.02.2018) SBD Split Tracks</li><li class="album library-item" data-contained-audio-files="36" data-full-path="Y:\Music\Armin van Buuren - A State Of Trance 852 (22.02.2018) SBD Split Tracks" data-shortname="Armin van Buuren - A State Of Trance 852 (22.02.2018) SBD Split Tracks">Armin van Buuren - A State Of Trance 852 (22.02.2018) SBD Split Tracks</li><li class="album library-item" data-contained-audio-files="37" data-full-path="Y:\Music\Armin van Buuren - A State Of Trance 864 (17.05.2018) SBD Split Tracks" data-shortname="Armin van Buuren - A State Of Trance 864 (17.05.2018) SBD Split Tracks">Armin van Buuren - A State Of Trance 864 (17.05.2018) SBD Split Tracks</li><li class="album library-item" data-contained-audio-files="34" data-full-path="Y:\Music\Armin van Buuren - A State Of Trance 871 (05.07.2018) SBD Split Tracks" data-shortname="Armin van Buuren - A State Of Trance 871 (05.07.2018) SBD Split Tracks">Armin van Buuren - A State Of Trance 871 (05.07.2018) SBD Split Tracks</li><li class="path library-item" data-total-albums="18" data-total-audio-files="261" data-full-path="Y:\Music\Beatles ALAC" data-shortname="Beatles ALAC">Beatles ALAC<ul><li class="library library-item" data-contained-collections="1" data-contained-albums="0" data-total-albums="18" data-total-audio-files="261" data-full-path="Y:\Music\Beatles ALAC\Videos" data-shortname="Videos">Videos<ul><li class="path library-item" data-total-albums="16" data-total-audio-files="226" data-full-path="Y:\Music\Beatles ALAC\Videos\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]" data-shortname="The Beatles - Stereo and Mono Box Sets + Extras [FLAC]">The Beatles - Stereo and Mono Box Sets + Extras [FLAC]<ul><li class="library library-item" data-contained-collections="2" data-contained-albums="12" data-total-albums="16" data-total-audio-files="226" data-full-path="Y:\Music\Beatles ALAC\Videos\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set" data-shortname="The Beatles Stereo Box Set">The Beatles Stereo Box Set<ul><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Beatles ALAC\Videos\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - A Hard Day's Night [2009 Stereo Remaster]" data-shortname="The Beatles - A Hard Day's Night [2009 Stereo Remaster]">The Beatles - A Hard Day's Night [2009 Stereo Remaster]</li><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Music\Beatles ALAC\Videos\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Abbey Road [2009 Stereo Remaster]" data-shortname="The Beatles - Abbey Road [2009 Stereo Remaster]">The Beatles - Abbey Road [2009 Stereo Remaster]</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Beatles ALAC\Videos\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Beatles For Sale [2009 Stereo Remaster]" data-shortname="The Beatles - Beatles For Sale [2009 Stereo Remaster]">The Beatles - Beatles For Sale [2009 Stereo Remaster]</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Beatles ALAC\Videos\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Help! [2009 Stereo Remaster]" data-shortname="The Beatles - Help! [2009 Stereo Remaster]">The Beatles - Help! [2009 Stereo Remaster]</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Beatles ALAC\Videos\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Let It Be [2009 Stereo Remaster]" data-shortname="The Beatles - Let It Be [2009 Stereo Remaster]">The Beatles - Let It Be [2009 Stereo Remaster]</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Beatles ALAC\Videos\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Magical Mystery Tour [2009 Stereo Remaster]" data-shortname="The Beatles - Magical Mystery Tour [2009 Stereo Remaster]">The Beatles - Magical Mystery Tour [2009 Stereo Remaster]</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="33" data-full-path="Y:\Music\Beatles ALAC\Videos\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Past Masters [2009 Stereo Remaster]" data-shortname="The Beatles - Past Masters [2009 Stereo Remaster]">The Beatles - Past Masters [2009 Stereo Remaster]<ul><li class="album library-item" data-contained-audio-files="18" data-full-path="Y:\Music\Beatles ALAC\Videos\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Past Masters [2009 Stereo Remaster]\Disc 1" data-shortname="Disc 1">Disc 1</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\Beatles ALAC\Videos\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Past Masters [2009 Stereo Remaster]\Disc 2" data-shortname="Disc 2">Disc 2</li></ul></li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Beatles ALAC\Videos\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Please Please Me [2009 Stereo Remaster]" data-shortname="The Beatles - Please Please Me [2009 Stereo Remaster]">The Beatles - Please Please Me [2009 Stereo Remaster]</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Beatles ALAC\Videos\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Revolver [2009 Stereo Remaster]" data-shortname="The Beatles - Revolver [2009 Stereo Remaster]">The Beatles - Revolver [2009 Stereo Remaster]</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Beatles ALAC\Videos\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Rubber Soul [2009 Stereo Remaster]" data-shortname="The Beatles - Rubber Soul [2009 Stereo Remaster]">The Beatles - Rubber Soul [2009 Stereo Remaster]</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Beatles ALAC\Videos\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Sgt. Peppers Lonely Hearts Club Band [2009 Stereo Remaster]" data-shortname="The Beatles - Sgt. Peppers Lonely Hearts Club Band [2009 Stereo Remaster]">The Beatles - Sgt. Peppers Lonely Hearts Club Band [2009 Stereo Remaster]</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="30" data-full-path="Y:\Music\Beatles ALAC\Videos\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - The Beatles (White Album) [2009 Stereo Remaster]" data-shortname="The Beatles - The Beatles (White Album) [2009 Stereo Remaster]">The Beatles - The Beatles (White Album) [2009 Stereo Remaster]<ul><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Music\Beatles ALAC\Videos\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - The Beatles (White Album) [2009 Stereo Remaster]\Disc 1" data-shortname="Disc 1">Disc 1</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Beatles ALAC\Videos\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - The Beatles (White Album) [2009 Stereo Remaster]\Disc 2" data-shortname="Disc 2">Disc 2</li></ul></li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Beatles ALAC\Videos\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - With The Beatles [2009 Stereo Remaster]" data-shortname="The Beatles - With The Beatles [2009 Stereo Remaster]">The Beatles - With The Beatles [2009 Stereo Remaster]</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Beatles ALAC\Videos\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Yellow Submarine [2009 Stereo Remaster]" data-shortname="The Beatles - Yellow Submarine [2009 Stereo Remaster]">The Beatles - Yellow Submarine [2009 Stereo Remaster]</li></ul></li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="35" data-full-path="Y:\Music\Beatles ALAC\Videos\The Essential Sly & The Family Stone [2011]" data-shortname="The Essential Sly & The Family Stone [2011]">The Essential Sly & The Family Stone [2011]<ul><li class="album library-item" data-contained-audio-files="18" data-full-path="Y:\Music\Beatles ALAC\Videos\The Essential Sly & The Family Stone [2011]\The Essential Sly & The Family Stone [Disc 1]" data-shortname="The Essential Sly & The Family Stone [Disc 1]">The Essential Sly & The Family Stone [Disc 1]</li><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Music\Beatles ALAC\Videos\The Essential Sly & The Family Stone [2011]\The Essential Sly & The Family Stone [Disc 2]" data-shortname="The Essential Sly & The Family Stone [Disc 2]">The Essential Sly & The Family Stone [Disc 2]</li></ul></li></ul></li></ul></li><li class="library library-item" data-contained-collections="1" data-contained-albums="15" data-total-albums="19" data-total-audio-files="161" data-full-path="Y:\Music\Bob Dylan" data-shortname="Bob Dylan">Bob Dylan<ul><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="1" data-full-path="Y:\Music\Bob Dylan\2 - Live Albums" data-shortname="2 - Live Albums">2 - Live Albums<ul><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Bob Dylan\2 - Live Albums\2012 - Live In New York Gaslight Cafe 1961" data-shortname="2012 - Live In New York Gaslight Cafe 1961">2012 - Live In New York Gaslight Cafe 1961</li></ul></li><li class="library library-item" data-contained-collections="1" data-contained-albums="0" data-total-albums="3" data-total-audio-files="58" data-full-path="Y:\Music\Bob Dylan\3 - Bootleg Series" data-shortname="3 - Bootleg Series">3 - Bootleg Series<ul><li class="collection library-item" data-contained-albums="3" data-total-albums="3" data-total-audio-files="58" data-full-path="Y:\Music\Bob Dylan\3 - Bootleg Series\12E968~1" data-shortname="12E968~1">12E968~1<ul><li class="album library-item" data-contained-audio-files="22" data-full-path="Y:\Music\Bob Dylan\3 - Bootleg Series\12E968~1\Bootleg Series 1" data-shortname="Bootleg Series 1">Bootleg Series 1</li><li class="album library-item" data-contained-audio-files="20" data-full-path="Y:\Music\Bob Dylan\3 - Bootleg Series\12E968~1\Bootleg Series 2" data-shortname="Bootleg Series 2">Bootleg Series 2</li><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\Bob Dylan\3 - Bootleg Series\12E968~1\Bootleg Series 3" data-shortname="Bootleg Series 3">Bootleg Series 3</li></ul></li></ul></li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Bob Dylan\Another Side of Bob Dylan" data-shortname="Another Side of Bob Dylan">Another Side of Bob Dylan</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Bob Dylan\Blonde On Blonde" data-shortname="Blonde On Blonde">Blonde On Blonde</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Bob Dylan\Blood On The Tracks" data-shortname="Blood On The Tracks">Blood On The Tracks</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Bob Dylan\Bob Dylan" data-shortname="Bob Dylan">Bob Dylan</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Bob Dylan\Bringing It All Back Home" data-shortname="Bringing It All Back Home">Bringing It All Back Home</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Bob Dylan\Christmas In The Heart" data-shortname="Christmas In The Heart">Christmas In The Heart</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Bob Dylan\Good As I Been To You" data-shortname="Good As I Been To You">Good As I Been To You</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\Bob Dylan\Highway 61 Revisited" data-shortname="Highway 61 Revisited">Highway 61 Revisited</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Bob Dylan\Infidels" data-shortname="Infidels">Infidels</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Bob Dylan\John Wesley Harding" data-shortname="John Wesley Harding">John Wesley Harding</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Bob Dylan\Knocked Out Loaded" data-shortname="Knocked Out Loaded">Knocked Out Loaded</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Bob Dylan\The Basement Tapes" data-shortname="The Basement Tapes">The Basement Tapes</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Bob Dylan\The Freewheelin' Bob Dylan" data-shortname="The Freewheelin' Bob Dylan">The Freewheelin' Bob Dylan</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Bob Dylan\The Times They Are a-Changin'" data-shortname="The Times They Are a-Changin'">The Times They Are a-Changin'</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Bob Dylan\Time Out Of Mind" data-shortname="Time Out Of Mind">Time Out Of Mind</li></ul></li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\CSN&Y So Far" data-shortname="CSN&Y So Far">CSN&Y So Far</li><li class="collection library-item" data-contained-albums="8" data-total-albums="8" data-total-audio-files="212" data-full-path="Y:\Music\Charmed Soundtrack" data-shortname="Charmed Soundtrack">Charmed Soundtrack<ul><li class="album library-item" data-contained-audio-files="48" data-full-path="Y:\Music\Charmed Soundtrack\Season 1" data-shortname="Season 1">Season 1</li><li class="album library-item" data-contained-audio-files="52" data-full-path="Y:\Music\Charmed Soundtrack\Season 2" data-shortname="Season 2">Season 2</li><li class="album library-item" data-contained-audio-files="26" data-full-path="Y:\Music\Charmed Soundtrack\Season 3" data-shortname="Season 3">Season 3</li><li class="album library-item" data-contained-audio-files="23" data-full-path="Y:\Music\Charmed Soundtrack\Season 4" data-shortname="Season 4">Season 4</li><li class="album library-item" data-contained-audio-files="19" data-full-path="Y:\Music\Charmed Soundtrack\Season 5" data-shortname="Season 5">Season 5</li><li class="album library-item" data-contained-audio-files="19" data-full-path="Y:\Music\Charmed Soundtrack\Season 6" data-shortname="Season 6">Season 6</li><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\Charmed Soundtrack\Season 7" data-shortname="Season 7">Season 7</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\Charmed Soundtrack\Season 8" data-shortname="Season 8">Season 8</li></ul></li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Charmed; The Book of Shadows - Soundtrack 320cbr (Big Papi) 2005" data-shortname="Charmed; The Book of Shadows - Soundtrack 320cbr (Big Papi) 2005">Charmed; The Book of Shadows - Soundtrack 320cbr (Big Papi) 2005</li><li class="collection library-item" data-contained-albums="9" data-total-albums="9" data-total-audio-files="113" data-full-path="Y:\Music\Creedence Clearwater Revival" data-shortname="Creedence Clearwater Revival">Creedence Clearwater Revival<ul><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Creedence Clearwater Revival\1968 - Creedence Clearwater Revival" data-shortname="1968 - Creedence Clearwater Revival">1968 - Creedence Clearwater Revival</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Creedence Clearwater Revival\1969 - Bayou Country" data-shortname="1969 - Bayou Country">1969 - Bayou Country</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Creedence Clearwater Revival\1969 - Green River" data-shortname="1969 - Green River">1969 - Green River</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Creedence Clearwater Revival\1969 - Willy and the Poor Boys" data-shortname="1969 - Willy and the Poor Boys">1969 - Willy and the Poor Boys</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Creedence Clearwater Revival\1970 - Cosmo's Factory" data-shortname="1970 - Cosmo's Factory">1970 - Cosmo's Factory</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Creedence Clearwater Revival\1970 - Pendulum" data-shortname="1970 - Pendulum">1970 - Pendulum</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Creedence Clearwater Revival\1972 - Mardi Gras" data-shortname="1972 - Mardi Gras">1972 - Mardi Gras</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Creedence Clearwater Revival\1973 - Live In Europe" data-shortname="1973 - Live In Europe">1973 - Live In Europe</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Creedence Clearwater Revival\1980 - The Concert" data-shortname="1980 - The Concert">1980 - The Concert</li></ul></li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Crime Mob - Crime Mob (2004) - Rap [www.torrentazos.com]" data-shortname="Crime Mob - Crime Mob (2004) - Rap [www.torrentazos.com]">Crime Mob - Crime Mob (2004) - Rap [www.torrentazos.com]</li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="1" data-full-path="Y:\Music\DILT" data-shortname="DILT">DILT<ul><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\DILT\Mixes" data-shortname="Mixes">Mixes</li></ul></li><li class="library library-item" data-contained-collections="17" data-contained-albums="39" data-total-albums="172" data-total-audio-files="1535" data-full-path="Y:\Music\DJ Tracks" data-shortname="DJ Tracks">DJ Tracks<ul><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\DJ Tracks\1999 TONIGHT THE STARS REVOLT" data-shortname="1999 TONIGHT THE STARS REVOLT">1999 TONIGHT THE STARS REVOLT</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\DJ Tracks\2001 ANYONE FOR DOOMSDAY" data-shortname="2001 ANYONE FOR DOOMSDAY">2001 ANYONE FOR DOOMSDAY</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\DJ Tracks\4-28-2018" data-shortname="4-28-2018">4-28-2018</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\DJ Tracks\Alryk - Nightmare" data-shortname="Alryk - Nightmare">Alryk - Nightmare</li><li class="album library-item" data-contained-audio-files="25" data-full-path="Y:\Music\DJ Tracks\Billain" data-shortname="Billain">Billain</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\DJ Tracks\Billx - U Cant Stop The Rave" data-shortname="Billx - U Cant Stop The Rave">Billx - U Cant Stop The Rave</li><li class="album library-item" data-contained-audio-files="26" data-full-path="Y:\Music\DJ Tracks\Blizzard Tracks for young Chip" data-shortname="Blizzard Tracks for young Chip">Blizzard Tracks for young Chip</li><li class="collection library-item" data-contained-albums="5" data-total-albums="5" data-total-audio-files="57" data-full-path="Y:\Music\DJ Tracks\Breakcore" data-shortname="Breakcore">Breakcore<ul><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\DJ Tracks\Breakcore\220" data-shortname="220">220</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\DJ Tracks\Breakcore\230+" data-shortname="230+">230+</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\DJ Tracks\Breakcore\4x4" data-shortname="4x4">4x4</li><li class="album library-item" data-contained-audio-files="18" data-full-path="Y:\Music\DJ Tracks\Breakcore\Slow Breaks" data-shortname="Slow Breaks">Slow Breaks</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\DJ Tracks\Breakcore\Temp Extra CD" data-shortname="Temp Extra CD">Temp Extra CD</li></ul></li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\DJ Tracks\Completely Different" data-shortname="Completely Different">Completely Different</li><li class="album library-item" data-contained-audio-files="26" data-full-path="Y:\Music\DJ Tracks\DONK" data-shortname="DONK">DONK</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\DJ Tracks\DnB Jan 2017" data-shortname="DnB Jan 2017">DnB Jan 2017</li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="4" data-full-path="Y:\Music\DJ Tracks\Frenchcore Hardtek 8-18-16" data-shortname="Frenchcore Hardtek 8-18-16">Frenchcore Hardtek 8-18-16<ul><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\Frenchcore Hardtek 8-18-16\The Sickest Squad - Ass- bass n bitches" data-shortname="The Sickest Squad - Ass- bass n bitches">The Sickest Squad - Ass- bass n bitches</li></ul></li><li class="album library-item" data-contained-audio-files="19" data-full-path="Y:\Music\DJ Tracks\Funky Neuro From BP 3-18-18" data-shortname="Funky Neuro From BP 3-18-18">Funky Neuro From BP 3-18-18</li><li class="library library-item" data-contained-collections="1" data-contained-albums="0" data-total-albums="4" data-total-audio-files="28" data-full-path="Y:\Music\DJ Tracks\Hardcore Breaks" data-shortname="Hardcore Breaks">Hardcore Breaks<ul><li class="collection library-item" data-contained-albums="4" data-total-albums="4" data-total-audio-files="28" data-full-path="Y:\Music\DJ Tracks\Hardcore Breaks\4-1-2017 hardcore breaks sorting" data-shortname="4-1-2017 hardcore breaks sorting">4-1-2017 hardcore breaks sorting<ul><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\DJ Tracks\Hardcore Breaks\4-1-2017 hardcore breaks sorting\110-130" data-shortname="110-130">110-130</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\DJ Tracks\Hardcore Breaks\4-1-2017 hardcore breaks sorting\130-150" data-shortname="130-150">130-150</li><li class="album library-item" data-contained-audio-files="18" data-full-path="Y:\Music\DJ Tracks\Hardcore Breaks\4-1-2017 hardcore breaks sorting\150-160" data-shortname="150-160">150-160</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\DJ Tracks\Hardcore Breaks\4-1-2017 hardcore breaks sorting\160-170" data-shortname="160-170">160-170</li></ul></li></ul></li><li class="album library-item" data-contained-audio-files="44" data-full-path="Y:\Music\DJ Tracks\Hardcore Breaks, Breaks, Future Jungle" data-shortname="Hardcore Breaks, Breaks, Future Jungle">Hardcore Breaks, Breaks, Future Jungle</li><li class="album library-item" data-contained-audio-files="40" data-full-path="Y:\Music\DJ Tracks\Hardtek 3-24-17" data-shortname="Hardtek 3-24-17">Hardtek 3-24-17</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\DJ Tracks\Hella Hardcore 9-13-13" data-shortname="Hella Hardcore 9-13-13">Hella Hardcore 9-13-13</li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="3" data-full-path="Y:\Music\DJ Tracks\KF64Promo" data-shortname="KF64Promo">KF64Promo<ul><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\DJ Tracks\KF64Promo\KF64Promo" data-shortname="KF64Promo">KF64Promo</li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="1" data-full-path="Y:\Music\DJ Tracks\KF65Promo" data-shortname="KF65Promo">KF65Promo<ul><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\DJ Tracks\KF65Promo\KF65Promo" data-shortname="KF65Promo">KF65Promo</li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="4" data-full-path="Y:\Music\DJ Tracks\KF67All" data-shortname="KF67All">KF67All<ul><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\KF67All\KF67All" data-shortname="KF67All">KF67All</li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="4" data-full-path="Y:\Music\DJ Tracks\KF68Promo" data-shortname="KF68Promo">KF68Promo<ul><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\KF68Promo\KF68Promo" data-shortname="KF68Promo">KF68Promo</li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="2" data-full-path="Y:\Music\DJ Tracks\KF69Promo" data-shortname="KF69Promo">KF69Promo<ul><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\DJ Tracks\KF69Promo\KF69Promo" data-shortname="KF69Promo">KF69Promo</li></ul></li><li class="library library-item" data-contained-collections="2" data-contained-albums="63" data-total-albums="65" data-total-audio-files="427" data-full-path="Y:\Music\DJ Tracks\KFA" data-shortname="KFA">KFA<ul><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\DJ Tracks\KFA\KF61Promo" data-shortname="KF61Promo">KF61Promo</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\DJ Tracks\KFA\KFA 16bit WAV masters" data-shortname="KFA 16bit WAV masters">KFA 16bit WAV masters</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\KFA\KFA01" data-shortname="KFA01">KFA01</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\DJ Tracks\KFA\KFA02" data-shortname="KFA02">KFA02</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\DJ Tracks\KFA\KFA03" data-shortname="KFA03">KFA03</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\KFA\KFA04" data-shortname="KFA04">KFA04</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\DJ Tracks\KFA\KFA05" data-shortname="KFA05">KFA05</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\DJ Tracks\KFA\KFA06" data-shortname="KFA06">KFA06</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\DJ Tracks\KFA\KFA07" data-shortname="KFA07">KFA07</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\DJ Tracks\KFA\KFA08" data-shortname="KFA08">KFA08</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\DJ Tracks\KFA\KFA09" data-shortname="KFA09">KFA09</li><li class="album library-item" data-contained-audio-files="22" data-full-path="Y:\Music\DJ Tracks\KFA\KFA10" data-shortname="KFA10">KFA10</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\DJ Tracks\KFA\KFA11" data-shortname="KFA11">KFA11</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\DJ Tracks\KFA\KFA12" data-shortname="KFA12">KFA12</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\DJ Tracks\KFA\KFA13" data-shortname="KFA13">KFA13</li><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\DJ Tracks\KFA\KFA14" data-shortname="KFA14">KFA14</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\DJ Tracks\KFA\KFA15" data-shortname="KFA15">KFA15</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\KFA\KFA16" data-shortname="KFA16">KFA16</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\KFA\KFA17" data-shortname="KFA17">KFA17</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\DJ Tracks\KFA\KFA18" data-shortname="KFA18">KFA18</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\DJ Tracks\KFA\KFA19" data-shortname="KFA19">KFA19</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\DJ Tracks\KFA\KFA20" data-shortname="KFA20">KFA20</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\DJ Tracks\KFA\KFA21" data-shortname="KFA21">KFA21</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\DJ Tracks\KFA\KFA22" data-shortname="KFA22">KFA22</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\DJ Tracks\KFA\KFA23" data-shortname="KFA23">KFA23</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\DJ Tracks\KFA\KFA24" data-shortname="KFA24">KFA24</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\KFA\KFA25" data-shortname="KFA25">KFA25</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\DJ Tracks\KFA\KFA26" data-shortname="KFA26">KFA26</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\DJ Tracks\KFA\KFA27" data-shortname="KFA27">KFA27</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\KFA\KFA28" data-shortname="KFA28">KFA28</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\DJ Tracks\KFA\KFA29" data-shortname="KFA29">KFA29</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\KFA\KFA30" data-shortname="KFA30">KFA30</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\DJ Tracks\KFA\KFA31" data-shortname="KFA31">KFA31</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\DJ Tracks\KFA\KFA32" data-shortname="KFA32">KFA32</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\KFA\KFA33" data-shortname="KFA33">KFA33</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\DJ Tracks\KFA\KFA34" data-shortname="KFA34">KFA34</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\DJ Tracks\KFA\KFA35" data-shortname="KFA35">KFA35</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\DJ Tracks\KFA\KFA36" data-shortname="KFA36">KFA36</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\DJ Tracks\KFA\KFA37" data-shortname="KFA37">KFA37</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\DJ Tracks\KFA\KFA38" data-shortname="KFA38">KFA38</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\DJ Tracks\KFA\KFA39" data-shortname="KFA39">KFA39</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\DJ Tracks\KFA\KFA40" data-shortname="KFA40">KFA40</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\DJ Tracks\KFA\KFA41" data-shortname="KFA41">KFA41</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\DJ Tracks\KFA\KFA42" data-shortname="KFA42">KFA42</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\DJ Tracks\KFA\KFA43" data-shortname="KFA43">KFA43</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\DJ Tracks\KFA\KFA44" data-shortname="KFA44">KFA44</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\DJ Tracks\KFA\KFA45" data-shortname="KFA45">KFA45</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\DJ Tracks\KFA\KFA46" data-shortname="KFA46">KFA46</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\DJ Tracks\KFA\KFA47" data-shortname="KFA47">KFA47</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\DJ Tracks\KFA\KFA48" data-shortname="KFA48">KFA48</li><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Music\DJ Tracks\KFA\KFA49" data-shortname="KFA49">KFA49</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\DJ Tracks\KFA\KFA50" data-shortname="KFA50">KFA50</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\DJ Tracks\KFA\KFA59ExEcEd" data-shortname="KFA59ExEcEd">KFA59ExEcEd</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\DJ Tracks\KFA\KFA60ExEcEd" data-shortname="KFA60ExEcEd">KFA60ExEcEd</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\DJ Tracks\KFA\KFA61promo" data-shortname="KFA61promo">KFA61promo</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\DJ Tracks\KFA\KFA62" data-shortname="KFA62">KFA62</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\KFA\KFA63" data-shortname="KFA63">KFA63</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\KFA\KFA63Promo" data-shortname="KFA63Promo">KFA63Promo</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\DJ Tracks\KFA\KFA65Promo" data-shortname="KFA65Promo">KFA65Promo</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\DJ Tracks\KFA\KFA67ExEcEd" data-shortname="KFA67ExEcEd">KFA67ExEcEd</li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="6" data-full-path="Y:\Music\DJ Tracks\KFA\KFA73Executive" data-shortname="KFA73Executive">KFA73Executive<ul><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\DJ Tracks\KFA\KFA73Executive\KFA73Executive" data-shortname="KFA73Executive">KFA73Executive</li></ul></li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\DJ Tracks\KFA\KFA74Promo" data-shortname="KFA74Promo">KFA74Promo</li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="16" data-full-path="Y:\Music\DJ Tracks\KFA\KFAPromo_Oct2015" data-shortname="KFAPromo_Oct2015">KFAPromo_Oct2015<ul><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\DJ Tracks\KFA\KFAPromo_Oct2015\KFApromopack" data-shortname="KFApromopack">KFApromopack</li></ul></li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\DJ Tracks\KFA\kfa64kf63promo" data-shortname="kfa64kf63promo">kfa64kf63promo</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\KFA\kfa70promo" data-shortname="kfa70promo">kfa70promo</li></ul></li><li class="library library-item" data-contained-collections="1" data-contained-albums="0" data-total-albums="1" data-total-audio-files="7" data-full-path="Y:\Music\DJ Tracks\KFCD03Promo" data-shortname="KFCD03Promo">KFCD03Promo<ul><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="7" data-full-path="Y:\Music\DJ Tracks\KFCD03Promo\KFCD03Promo" data-shortname="KFCD03Promo">KFCD03Promo<ul><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\DJ Tracks\KFCD03Promo\KFCD03Promo\MP3s" data-shortname="MP3s">MP3s</li></ul></li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="4" data-full-path="Y:\Music\DJ Tracks\KFCD04" data-shortname="KFCD04">KFCD04<ul><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\KFCD04\KFCD04" data-shortname="KFCD04">KFCD04</li></ul></li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\DJ Tracks\Kick Bass Album" data-shortname="Kick Bass Album">Kick Bass Album</li><li class="library library-item" data-contained-collections="7" data-contained-albums="0" data-total-albums="8" data-total-audio-files="43" data-full-path="Y:\Music\DJ Tracks\Kniteforce" data-shortname="Kniteforce">Kniteforce<ul><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="3" data-full-path="Y:\Music\DJ Tracks\Kniteforce\KF64Promo" data-shortname="KF64Promo">KF64Promo<ul><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\DJ Tracks\Kniteforce\KF64Promo\KF64Promo" data-shortname="KF64Promo">KF64Promo</li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="3" data-full-path="Y:\Music\DJ Tracks\Kniteforce\KF65Promo" data-shortname="KF65Promo">KF65Promo<ul><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\DJ Tracks\Kniteforce\KF65Promo\KF65Promo" data-shortname="KF65Promo">KF65Promo</li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="7" data-full-path="Y:\Music\DJ Tracks\Kniteforce\KF66Promo" data-shortname="KF66Promo">KF66Promo<ul><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\DJ Tracks\Kniteforce\KF66Promo\KF66Promo" data-shortname="KF66Promo">KF66Promo</li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="4" data-full-path="Y:\Music\DJ Tracks\Kniteforce\KF67All" data-shortname="KF67All">KF67All<ul><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\Kniteforce\KF67All\KF67All" data-shortname="KF67All">KF67All</li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="4" data-full-path="Y:\Music\DJ Tracks\Kniteforce\KF68Promo" data-shortname="KF68Promo">KF68Promo<ul><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\Kniteforce\KF68Promo\KF68Promo" data-shortname="KF68Promo">KF68Promo</li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="3" data-full-path="Y:\Music\DJ Tracks\Kniteforce\KF69Promo" data-shortname="KF69Promo">KF69Promo<ul><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\DJ Tracks\Kniteforce\KF69Promo\KF69Promo" data-shortname="KF69Promo">KF69Promo</li></ul></li><li class="library library-item" data-contained-collections="1" data-contained-albums="0" data-total-albums="1" data-total-audio-files="12" data-full-path="Y:\Music\DJ Tracks\Kniteforce\KFCD03Promo" data-shortname="KFCD03Promo">KFCD03Promo<ul><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="12" data-full-path="Y:\Music\DJ Tracks\Kniteforce\KFCD03Promo\KFCD03Promo" data-shortname="KFCD03Promo">KFCD03Promo<ul><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\DJ Tracks\Kniteforce\KFCD03Promo\KFCD03Promo\MP3s" data-shortname="MP3s">MP3s</li></ul></li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="7" data-full-path="Y:\Music\DJ Tracks\Kniteforce\KFCD04" data-shortname="KFCD04">KFCD04<ul><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\DJ Tracks\Kniteforce\KFCD04\KFCD04" data-shortname="KFCD04">KFCD04</li></ul></li></ul></li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\Komperes HS 4" data-shortname="Komperes HS 4">Komperes HS 4</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\DJ Tracks\Luca Skatek - Homicide Impulse" data-shortname="Luca Skatek - Homicide Impulse">Luca Skatek - Homicide Impulse</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\Move Your Ass 3" data-shortname="Move Your Ass 3">Move Your Ass 3</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\DJ Tracks\NEOH" data-shortname="NEOH">NEOH</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\DJ Tracks\Neika" data-shortname="Neika">Neika</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="7" data-full-path="Y:\Music\DJ Tracks\Neurokontrol" data-shortname="Neurokontrol">Neurokontrol<ul><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\DJ Tracks\Neurokontrol\frenchcore" data-shortname="frenchcore">frenchcore</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\DJ Tracks\Neurokontrol\raggatek" data-shortname="raggatek">raggatek</li></ul></li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\DJ Tracks\OVe-NaXx_-_Bullets_From_Habikino_City_HxCx__The_Remixes-Crockp3-045-2015-CRD" data-shortname="OVe-NaXx_-_Bullets_From_Habikino_City_HxCx__The_Remixes-Crockp3-045-2015-CRD">OVe-NaXx_-_Bullets_From_Habikino_City_HxCx__The_Remixes-Crockp3-045-2015-CRD</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\DJ Tracks\Ostralopitek - Play" data-shortname="Ostralopitek - Play">Ostralopitek - Play</li><li class="collection library-item" data-contained-albums="27" data-total-albums="27" data-total-audio-files="282" data-full-path="Y:\Music\DJ Tracks\Psytrance" data-shortname="Psytrance">Psytrance<ul><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\DJ Tracks\Psytrance\Alien Chaos - Discovering The Code - 2014 - WAV" data-shortname="Alien Chaos - Discovering The Code - 2014 - WAV">Alien Chaos - Discovering The Code - 2014 - WAV</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\DJ Tracks\Psytrance\Alien Chaos - Remixes - 2015 - WAV" data-shortname="Alien Chaos - Remixes - 2015 - WAV">Alien Chaos - Remixes - 2015 - WAV</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\DJ Tracks\Psytrance\Arcek - Alien Interview" data-shortname="Arcek - Alien Interview">Arcek - Alien Interview</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\DJ Tracks\Psytrance\Asomori - Mental Vacuum" data-shortname="Asomori - Mental Vacuum">Asomori - Mental Vacuum</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\DJ Tracks\Psytrance\Digital Dream - Lucid in Limbo" data-shortname="Digital Dream - Lucid in Limbo">Digital Dream - Lucid in Limbo</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\DJ Tracks\Psytrance\Fractal Mind Vol. 1" data-shortname="Fractal Mind Vol. 1">Fractal Mind Vol. 1</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\DJ Tracks\Psytrance\Freaks in Love Vol. 1" data-shortname="Freaks in Love Vol. 1">Freaks in Love Vol. 1</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\DJ Tracks\Psytrance\From Space" data-shortname="From Space">From Space</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\DJ Tracks\Psytrance\Keluk - Terra Taara" data-shortname="Keluk - Terra Taara">Keluk - Terra Taara</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\Psytrance\Khorshid - Manizeh - 2014 - WAV" data-shortname="Khorshid - Manizeh - 2014 - WAV">Khorshid - Manizeh - 2014 - WAV</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\Psytrance\LiinK - Astral Adventure - 2014 - WAV" data-shortname="LiinK - Astral Adventure - 2014 - WAV">LiinK - Astral Adventure - 2014 - WAV</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\DJ Tracks\Psytrance\Marlin Janus - Ektoplazmic Surgery - 2012 - WAV" data-shortname="Marlin Janus - Ektoplazmic Surgery - 2012 - WAV">Marlin Janus - Ektoplazmic Surgery - 2012 - WAV</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\DJ Tracks\Psytrance\Overwhelming Dosage Madness" data-shortname="Overwhelming Dosage Madness">Overwhelming Dosage Madness</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\DJ Tracks\Psytrance\Sabellius Pack 2" data-shortname="Sabellius Pack 2">Sabellius Pack 2</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\DJ Tracks\Psytrance\Uruculator - Type Your Name Here - 2013 - WAV" data-shortname="Uruculator - Type Your Name Here - 2013 - WAV">Uruculator - Type Your Name Here - 2013 - WAV</li><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Music\DJ Tracks\Psytrance\VA - Australiacs Vol. 1 - 2015 - WAV" data-shortname="VA - Australiacs Vol. 1 - 2015 - WAV">VA - Australiacs Vol. 1 - 2015 - WAV</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\DJ Tracks\Psytrance\VA - Comphilation Vol. 1" data-shortname="VA - Comphilation Vol. 1">VA - Comphilation Vol. 1</li><li class="album library-item" data-contained-audio-files="19" data-full-path="Y:\Music\DJ Tracks\Psytrance\VA - Dopeness - 2014 - WAV" data-shortname="VA - Dopeness - 2014 - WAV">VA - Dopeness - 2014 - WAV</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\DJ Tracks\Psytrance\VA - From Space - 2014 - WAV" data-shortname="VA - From Space - 2014 - WAV">VA - From Space - 2014 - WAV</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\DJ Tracks\Psytrance\VA - Harmonik Hooligans II - 2012 - WAV" data-shortname="VA - Harmonik Hooligans II - 2012 - WAV">VA - Harmonik Hooligans II - 2012 - WAV</li><li class="album library-item" data-contained-audio-files="21" data-full-path="Y:\Music\DJ Tracks\Psytrance\VA - Harmonik Hooligans III - 2014 - WAV" data-shortname="VA - Harmonik Hooligans III - 2014 - WAV">VA - Harmonik Hooligans III - 2014 - WAV</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\DJ Tracks\Psytrance\VA - Inner Android - 2014 - WAV" data-shortname="VA - Inner Android - 2014 - WAV">VA - Inner Android - 2014 - WAV</li><li class="album library-item" data-contained-audio-files="22" data-full-path="Y:\Music\DJ Tracks\Psytrance\VA - Inner Fhorse Chapter II - 2015 - WAV" data-shortname="VA - Inner Fhorse Chapter II - 2015 - WAV">VA - Inner Fhorse Chapter II - 2015 - WAV</li><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\DJ Tracks\Psytrance\VA - Mind Manifesting - 2014 - WAV" data-shortname="VA - Mind Manifesting - 2014 - WAV">VA - Mind Manifesting - 2014 - WAV</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\DJ Tracks\Psytrance\VA - Qua Da La Vol. 2 - 2015 - WAV" data-shortname="VA - Qua Da La Vol. 2 - 2015 - WAV">VA - Qua Da La Vol. 2 - 2015 - WAV</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\DJ Tracks\Psytrance\VA - Satori Vol. 1 - 2014 - WAV" data-shortname="VA - Satori Vol. 1 - 2014 - WAV">VA - Satori Vol. 1 - 2014 - WAV</li><li class="album library-item" data-contained-audio-files="18" data-full-path="Y:\Music\DJ Tracks\Psytrance\VA - Splatter Punk - 2014 - WAV" data-shortname="VA - Splatter Punk - 2014 - WAV">VA - Splatter Punk - 2014 - WAV</li></ul></li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\DJ Tracks\Six Pack Tracks" data-shortname="Six Pack Tracks">Six Pack Tracks</li><li class="album library-item" data-contained-audio-files="18" data-full-path="Y:\Music\DJ Tracks\Sweetcore Absolute" data-shortname="Sweetcore Absolute">Sweetcore Absolute</li><li class="collection library-item" data-contained-albums="3" data-total-albums="3" data-total-audio-files="9" data-full-path="Y:\Music\DJ Tracks\Unknown artist" data-shortname="Unknown artist">Unknown artist<ul><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\DJ Tracks\Unknown artist\Unknown album (6-25-2013 10-20-03 AM)" data-shortname="Unknown album (6-25-2013 10-20-03 AM)">Unknown album (6-25-2013 10-20-03 AM)</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\Unknown artist\Unknown album (6-28-2013 2-58-13 PM)" data-shortname="Unknown album (6-28-2013 2-58-13 PM)">Unknown album (6-28-2013 2-58-13 PM)</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\DJ Tracks\Unknown artist\Unknown album (9-18-2014 11-39-48 AM)" data-shortname="Unknown album (9-18-2014 11-39-48 AM)">Unknown album (9-18-2014 11-39-48 AM)</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="26" data-full-path="Y:\Music\DJ Tracks\Various" data-shortname="Various">Various<ul><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\DJ Tracks\Various\Kick those drums" data-shortname="Kick those drums">Kick those drums</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\DJ Tracks\Various\kniteforce breaks" data-shortname="kniteforce breaks">kniteforce breaks</li></ul></li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\Z-33 TRACKS pack" data-shortname="Z-33 TRACKS pack">Z-33 TRACKS pack</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\ZONE-33" data-shortname="ZONE-33">ZONE-33</li><li class="collection library-item" data-contained-albums="4" data-total-albums="4" data-total-audio-files="30" data-full-path="Y:\Music\DJ Tracks\bandcamp 4.1.18" data-shortname="bandcamp 4.1.18">bandcamp 4.1.18<ul><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\DJ Tracks\bandcamp 4.1.18\DJKurara - Pop Teen Mashcore Paradise" data-shortname="DJKurara - Pop Teen Mashcore Paradise">DJKurara - Pop Teen Mashcore Paradise</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\bandcamp 4.1.18\DTC - NAYIX - Passage 01" data-shortname="DTC - NAYIX - Passage 01">DTC - NAYIX - Passage 01</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\DJ Tracks\bandcamp 4.1.18\Ratus - Pouetcore United !" data-shortname="Ratus - Pouetcore United !">Ratus - Pouetcore United !</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\DJ Tracks\bandcamp 4.1.18\Tao H - ON EN A GROS -Album" data-shortname="Tao H - ON EN A GROS -Album">Tao H - ON EN A GROS -Album</li></ul></li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\DJ Tracks\boxset" data-shortname="boxset">boxset</li><li class="album library-item" data-contained-audio-files="39" data-full-path="Y:\Music\DJ Tracks\extract from DLs 1" data-shortname="extract from DLs 1">extract from DLs 1</li><li class="album library-item" data-contained-audio-files="40" data-full-path="Y:\Music\DJ Tracks\extract from Dls 2" data-shortname="extract from Dls 2">extract from Dls 2</li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="13" data-full-path="Y:\Music\DJ Tracks\fant4stik" data-shortname="fant4stik">fant4stik<ul><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\DJ Tracks\fant4stik\FANT4STIK album REPTILIANS" data-shortname="FANT4STIK album REPTILIANS">FANT4STIK album REPTILIANS</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="21" data-full-path="Y:\Music\DJ Tracks\floxytek" data-shortname="floxytek">floxytek<ul><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\DJ Tracks\floxytek\floxytek - zulu" data-shortname="floxytek - zulu">floxytek - zulu</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\DJ Tracks\floxytek\floxytek- invasion" data-shortname="floxytek- invasion">floxytek- invasion</li></ul></li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\DJ Tracks\gamm@" data-shortname="gamm@">gamm@</li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="9" data-full-path="Y:\Music\DJ Tracks\hardtek 7-28" data-shortname="hardtek 7-28">hardtek 7-28<ul><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\DJ Tracks\hardtek 7-28\BILLX FRACTAL" data-shortname="BILLX FRACTAL">BILLX FRACTAL</li></ul></li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\DJ Tracks\harry potar" data-shortname="harry potar">harry potar</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\DJ Tracks\hellahardcore827masters" data-shortname="hellahardcore827masters">hellahardcore827masters</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\DJ Tracks\jp music" data-shortname="jp music">jp music</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\DJ Tracks\mat weasel" data-shortname="mat weasel">mat weasel</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\DJ Tracks\pitch madattak" data-shortname="pitch madattak">pitch madattak</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\DJ Tracks\pumpcore edits" data-shortname="pumpcore edits">pumpcore edits</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\DJ Tracks\random hardtek" data-shortname="random hardtek">random hardtek</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\DJ Tracks\ratus" data-shortname="ratus">ratus</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\DJ Tracks\rekordbox_Control_Signal" data-shortname="rekordbox_Control_Signal">rekordbox_Control_Signal</li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="3" data-full-path="Y:\Music\DJ Tracks\tanukichi" data-shortname="tanukichi">tanukichi<ul><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\DJ Tracks\tanukichi\Tanupack 2016" data-shortname="Tanupack 2016">Tanupack 2016</li></ul></li></ul></li><li class="library library-item" data-contained-collections="5" data-contained-albums="0" data-total-albums="55" data-total-audio-files="360" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013" data-shortname="Daft Punk - Discography - 1994-2013">Daft Punk - Discography - 1994-2013<ul><li class="collection library-item" data-contained-albums="4" data-total-albums="4" data-total-audio-files="53" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\01 - Albums (CD Original)" data-shortname="01 - Albums (CD Original)">01 - Albums (CD Original)<ul><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\01 - Albums (CD Original)\1997 - Homework - (320 kbps)" data-shortname="1997 - Homework - (320 kbps)">1997 - Homework - (320 kbps)</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\01 - Albums (CD Original)\2001 - Discovery - (320 kbps)" data-shortname="2001 - Discovery - (320 kbps)">2001 - Discovery - (320 kbps)</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\01 - Albums (CD Original)\2005 - Human After All - (320 kbps)" data-shortname="2005 - Human After All - (320 kbps)">2005 - Human After All - (320 kbps)</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\01 - Albums (CD Original)\2013 - Random Access Memories - (320 kbps)" data-shortname="2013 - Random Access Memories - (320 kbps)">2013 - Random Access Memories - (320 kbps)</li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="14" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\02 - Albums (Japan Press)" data-shortname="02 - Albums (Japan Press)">02 - Albums (Japan Press)<ul><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\02 - Albums (Japan Press)\2013 - Random Access Memories (Japanese Edition) - (320 kbps)" data-shortname="2013 - Random Access Memories (Japanese Edition) - (320 kbps)">2013 - Random Access Memories (Japanese Edition) - (320 kbps)</li></ul></li><li class="collection library-item" data-contained-albums="4" data-total-albums="4" data-total-audio-files="53" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\03 - Albums (Vinyl)" data-shortname="03 - Albums (Vinyl)">03 - Albums (Vinyl)<ul><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\03 - Albums (Vinyl)\1997 - Homework (2 Vinyl, LP) - (320 kbps)" data-shortname="1997 - Homework (2 Vinyl, LP) - (320 kbps)">1997 - Homework (2 Vinyl, LP) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\03 - Albums (Vinyl)\2001 - Discovery (2 Vinyl, LP) - (320 kbps)" data-shortname="2001 - Discovery (2 Vinyl, LP) - (320 kbps)">2001 - Discovery (2 Vinyl, LP) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\03 - Albums (Vinyl)\2005 - Human After All (2 Vinyl, LP) - (320 kbps)" data-shortname="2005 - Human After All (2 Vinyl, LP) - (320 kbps)">2005 - Human After All (2 Vinyl, LP) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\03 - Albums (Vinyl)\2013 - Random Access Memories (2 Vinyl, LP) - (320 kbps)" data-shortname="2013 - Random Access Memories (2 Vinyl, LP) - (320 kbps)">2013 - Random Access Memories (2 Vinyl, LP) - (320 kbps)</li></ul></li><li class="library library-item" data-contained-collections="1" data-contained-albums="1" data-total-albums="3" data-total-audio-files="14" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\04 - Albums (Live)" data-shortname="04 - Albums (Live)">04 - Albums (Live)<ul><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\04 - Albums (Live)\2001 - Alive 1997 - (320 kbps)" data-shortname="2001 - Alive 1997 - (320 kbps)">2001 - Alive 1997 - (320 kbps)</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="13" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\04 - Albums (Live)\2007 - Alive 2007 (Deluxe Limited Edition) - (320 kbps)" data-shortname="2007 - Alive 2007 (Deluxe Limited Edition) - (320 kbps)">2007 - Alive 2007 (Deluxe Limited Edition) - (320 kbps)<ul><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\04 - Albums (Live)\2007 - Alive 2007 (Deluxe Limited Edition) - (320 kbps)\CD 1" data-shortname="CD 1">CD 1</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\04 - Albums (Live)\2007 - Alive 2007 (Deluxe Limited Edition) - (320 kbps)\CD 2 - Bonus Disc" data-shortname="CD 2 - Bonus Disc">CD 2 - Bonus Disc</li></ul></li></ul></li><li class="collection library-item" data-contained-albums="3" data-total-albums="3" data-total-audio-files="39" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\05 - Compilations" data-shortname="05 - Compilations">05 - Compilations<ul><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\05 - Compilations\2003 - Daft Club - (320 kbps)" data-shortname="2003 - Daft Club - (320 kbps)">2003 - Daft Club - (320 kbps)</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\05 - Compilations\2006 - Human After All Remixes (Japanese Limited Edition) - (320 kbps)" data-shortname="2006 - Human After All Remixes (Japanese Limited Edition) - (320 kbps)">2006 - Human After All Remixes (Japanese Limited Edition) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\05 - Compilations\2006 - Musique Vol. 1 (1993-2005) - (320 kbps)" data-shortname="2006 - Musique Vol. 1 (1993-2005) - (320 kbps)">2006 - Musique Vol. 1 (1993-2005) - (320 kbps)</li></ul></li><li class="library library-item" data-contained-collections="1" data-contained-albums="3" data-total-albums="5" data-total-audio-files="75" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\06 - Soundtrack" data-shortname="06 - Soundtrack">06 - Soundtrack<ul><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="27" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\06 - Soundtrack\2010 - TRON Legacy (Special Edition) - (320 kbps)" data-shortname="2010 - TRON Legacy (Special Edition) - (320 kbps)">2010 - TRON Legacy (Special Edition) - (320 kbps)<ul><li class="album library-item" data-contained-audio-files="22" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\06 - Soundtrack\2010 - TRON Legacy (Special Edition) - (320 kbps)\CD 1" data-shortname="CD 1">CD 1</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\06 - Soundtrack\2010 - TRON Legacy (Special Edition) - (320 kbps)\CD 2" data-shortname="CD 2">CD 2</li></ul></li><li class="album library-item" data-contained-audio-files="29" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\06 - Soundtrack\2011 - TRON Legacy (2 Vinyl, LP) - (320 kbps)" data-shortname="2011 - TRON Legacy (2 Vinyl, LP) - (320 kbps)">2011 - TRON Legacy (2 Vinyl, LP) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\06 - Soundtrack\2011 - TRON Legacy - Translucence (EP) - (320 kbps)" data-shortname="2011 - TRON Legacy - Translucence (EP) - (320 kbps)">2011 - TRON Legacy - Translucence (EP) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\06 - Soundtrack\2011 - TRON Legacy Reconfigured - (320 kbps)" data-shortname="2011 - TRON Legacy Reconfigured - (320 kbps)">2011 - TRON Legacy Reconfigured - (320 kbps)</li></ul></li><li class="collection library-item" data-contained-albums="35" data-total-albums="35" data-total-audio-files="112" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles" data-shortname="07 - Singles">07 - Singles<ul><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\1994 - The New Wave (Vinyl 12)" data-shortname="1994 - The New Wave (Vinyl 12)">1994 - The New Wave (Vinyl 12)</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\1996 - Around The World (CDMS Promo) - (320 kbps)" data-shortname="1996 - Around The World (CDMS Promo) - (320 kbps)">1996 - Around The World (CDMS Promo) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\1996 - Around The World (Vinyl 12)" data-shortname="1996 - Around The World (Vinyl 12)">1996 - Around The World (Vinyl 12)</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\1996 - Da Funk (CDMS Promo)" data-shortname="1996 - Da Funk (CDMS Promo)">1996 - Da Funk (CDMS Promo)</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\1996 - Da Funk (CDMS) - (320 kbps)" data-shortname="1996 - Da Funk (CDMS) - (320 kbps)">1996 - Da Funk (CDMS) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\1996 - Indo Silver Club (Part One) (Vinyl 12)" data-shortname="1996 - Indo Silver Club (Part One) (Vinyl 12)">1996 - Indo Silver Club (Part One) (Vinyl 12)</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\1997 - Around The World (CDMS) - (320 kbps)" data-shortname="1997 - Around The World (CDMS) - (320 kbps)">1997 - Around The World (CDMS) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\1997 - Around The World (Limited Edition) (Vinyl 12)" data-shortname="1997 - Around The World (Limited Edition) (Vinyl 12)">1997 - Around The World (Limited Edition) (Vinyl 12)</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\1997 - Burnin' (CDS) - (320 kbps)" data-shortname="1997 - Burnin' (CDS) - (320 kbps)">1997 - Burnin' (CDS) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\1997 - Burnin' (Vinyl 12)" data-shortname="1997 - Burnin' (Vinyl 12)">1997 - Burnin' (Vinyl 12)</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\1998 - Around The World (Ricanstructed By Masters At Work) (2 Vinyl 12) - (320 kbps)" data-shortname="1998 - Around The World (Ricanstructed By Masters At Work) (2 Vinyl 12) - (320 kbps)">1998 - Around The World (Ricanstructed By Masters At Work) (2 Vinyl 12) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\1998 - Revolution 909 (CDS) - (320 kbps)" data-shortname="1998 - Revolution 909 (CDS) - (320 kbps)">1998 - Revolution 909 (CDS) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2000 - One More Time (CDS Promo) - (320 kbps)" data-shortname="2000 - One More Time (CDS Promo) - (320 kbps)">2000 - One More Time (CDS Promo) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2000 - One More Time (CDS) - (320 kbps)" data-shortname="2000 - One More Time (CDS) - (320 kbps)">2000 - One More Time (CDS) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2001 - Aerodynamic (CDS) - (320 kbps)" data-shortname="2001 - Aerodynamic (CDS) - (320 kbps)">2001 - Aerodynamic (CDS) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2001 - Digital Love (CDMS) - (320 kbps)" data-shortname="2001 - Digital Love (CDMS) - (320 kbps)">2001 - Digital Love (CDMS) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2001 - Harder Better Faster Stronger (CDMS Japan)" data-shortname="2001 - Harder Better Faster Stronger (CDMS Japan)">2001 - Harder Better Faster Stronger (CDMS Japan)</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2001 - Harder Better Faster Stronger (Remix Promo)" data-shortname="2001 - Harder Better Faster Stronger (Remix Promo)">2001 - Harder Better Faster Stronger (Remix Promo)</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2001 - Harder Better Faster Stronger (Vinyl 12 Promo)" data-shortname="2001 - Harder Better Faster Stronger (Vinyl 12 Promo)">2001 - Harder Better Faster Stronger (Vinyl 12 Promo)</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2001 - Harder, Better, Faster, Stronger (CDS Promo) - (320 kbps)" data-shortname="2001 - Harder, Better, Faster, Stronger (CDS Promo) - (320 kbps)">2001 - Harder, Better, Faster, Stronger (CDS Promo) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2003 - Face To Face (Rare Remixes!) (Vinyl 12 Promo)" data-shortname="2003 - Face To Face (Rare Remixes!) (Vinyl 12 Promo)">2003 - Face To Face (Rare Remixes!) (Vinyl 12 Promo)</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2003 - Something About Us (Love Theme From Interstella 5555) (CDS Promo)" data-shortname="2003 - Something About Us (Love Theme From Interstella 5555) (CDS Promo)">2003 - Something About Us (Love Theme From Interstella 5555) (CDS Promo)</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2003 - Something About Us (Love Theme From Interstella 5555) (Vinyl 12) - (320 kbps)" data-shortname="2003 - Something About Us (Love Theme From Interstella 5555) (Vinyl 12) - (320 kbps)">2003 - Something About Us (Love Theme From Interstella 5555) (Vinyl 12) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2005 - Human After All (CDMS)" data-shortname="2005 - Human After All (CDMS)">2005 - Human After All (CDMS)</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2005 - Robot Rock (CDS) - (320 kbps)" data-shortname="2005 - Robot Rock (CDS) - (320 kbps)">2005 - Robot Rock (CDS) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2005 - Robot Rock (Vinyl 12)" data-shortname="2005 - Robot Rock (Vinyl 12)">2005 - Robot Rock (Vinyl 12)</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2005 - Technologic (CDS Promo)" data-shortname="2005 - Technologic (CDS Promo)">2005 - Technologic (CDS Promo)</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2005 - Technologic (CDS) - (320 kbps)" data-shortname="2005 - Technologic (CDS) - (320 kbps)">2005 - Technologic (CDS) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2005 - Technologic (Digitalism Remix) (Vinyl 12 Promo)" data-shortname="2005 - Technologic (Digitalism Remix) (Vinyl 12 Promo)">2005 - Technologic (Digitalism Remix) (Vinyl 12 Promo)</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2006 - Prime Time Of Your Life (CDMS) - (320 kbps)" data-shortname="2006 - Prime Time Of Your Life (CDMS) - (320 kbps)">2006 - Prime Time Of Your Life (CDMS) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2007 - Harder Better Faster Stronger (Alive 2007) (CDS Promo) - (320 kbps)" data-shortname="2007 - Harder Better Faster Stronger (Alive 2007) (CDS Promo) - (320 kbps)">2007 - Harder Better Faster Stronger (Alive 2007) (CDS Promo) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2007 - Harder Better Faster Stronger (Alive 2007) (CDS)" data-shortname="2007 - Harder Better Faster Stronger (Alive 2007) (CDS)">2007 - Harder Better Faster Stronger (Alive 2007) (CDS)</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2013 - Get Lucky (CDS) - (320 kbps)" data-shortname="2013 - Get Lucky (CDS) - (320 kbps)">2013 - Get Lucky (CDS) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2013 - Get Lucky (Daft Punk Remix) (DS) - (320 kbps)" data-shortname="2013 - Get Lucky (Daft Punk Remix) (DS) - (320 kbps)">2013 - Get Lucky (Daft Punk Remix) (DS) - (320 kbps)</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Daft Punk - Discography - 1994-2013\07 - Singles\2013 - Instant Crush (CDS Promo) - (320 kbps)" data-shortname="2013 - Instant Crush (CDS Promo) - (320 kbps)">2013 - Instant Crush (CDS Promo) - (320 kbps)</li></ul></li></ul></li><li class="library library-item" data-contained-collections="5" data-contained-albums="0" data-total-albums="25" data-total-audio-files="271" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]" data-shortname="Diary Of Dreams - Full Discography [1994-2012]">Diary Of Dreams - Full Discography [1994-2012]<ul><li class="collection library-item" data-contained-albums="12" data-total-albums="12" data-total-audio-files="159" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Albums" data-shortname="Albums">Albums<ul><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Albums\[1994] Cholymelan" data-shortname="[1994] Cholymelan">[1994] Cholymelan</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Albums\[1995] End Of Flowers" data-shortname="[1995] End Of Flowers">[1995] End Of Flowers</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Albums\[1997] Bird Without Wings" data-shortname="[1997] Bird Without Wings">[1997] Bird Without Wings</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Albums\[1998] Psychoma" data-shortname="[1998] Psychoma">[1998] Psychoma</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Albums\[2000] One of 18 Angels" data-shortname="[2000] One of 18 Angels">[2000] One of 18 Angels</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Albums\[2002] Freak Perfume" data-shortname="[2002] Freak Perfume">[2002] Freak Perfume</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Albums\[2004] Nigredo" data-shortname="[2004] Nigredo">[2004] Nigredo</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Albums\[2007] Nekrolog 43" data-shortname="[2007] Nekrolog 43">[2007] Nekrolog 43</li><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Albums\[2009] (If)" data-shortname="[2009] (If)">[2009] (If)</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Albums\[2010] Leipzig, Agra Halle (WGT) -2010.05.23-" data-shortname="[2010] Leipzig, Agra Halle (WGT) -2010.05.23-">[2010] Leipzig, Agra Halle (WGT) -2010.05.23-</li><li class="album library-item" data-contained-audio-files="21" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Albums\[2011] Ego X" data-shortname="[2011] Ego X">[2011] Ego X</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Albums\[2012] The Anatomy Of Silence" data-shortname="[2012] The Anatomy Of Silence">[2012] The Anatomy Of Silence</li></ul></li><li class="collection library-item" data-contained-albums="5" data-total-albums="5" data-total-audio-files="70" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Compilations and Live Albums" data-shortname="Compilations and Live Albums">Compilations and Live Albums<ul><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Compilations and Live Albums\[1999] Moments of Bloom" data-shortname="[1999] Moments of Bloom">[1999] Moments of Bloom</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Compilations and Live Albums\[2003] Dream Collector" data-shortname="[2003] Dream Collector">[2003] Dream Collector</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Compilations and Live Albums\[2005] Alive" data-shortname="[2005] Alive">[2005] Alive</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Compilations and Live Albums\[2012] Dream Collector II" data-shortname="[2012] Dream Collector II">[2012] Dream Collector II</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Compilations and Live Albums\_60SZL~Q" data-shortname="_60SZL~Q">_60SZL~Q</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="14" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\EPs" data-shortname="EPs">EPs<ul><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\EPs\[2002] Panik Manifesto" data-shortname="[2002] Panik Manifesto">[2002] Panik Manifesto</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\EPs\[2005] Menschfeind EP" data-shortname="[2005] Menschfeind EP">[2005] Menschfeind EP</li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="7" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Others" data-shortname="Others">Others<ul><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Others\[1996-2007] Rare Tracks" data-shortname="[1996-2007] Rare Tracks">[1996-2007] Rare Tracks</li></ul></li><li class="collection library-item" data-contained-albums="5" data-total-albums="5" data-total-audio-files="21" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Singles" data-shortname="Singles">Singles<ul><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Singles\[2001] O' Brother Sleep" data-shortname="[2001] O' Brother Sleep">[2001] O' Brother Sleep</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Singles\[2002] Amok" data-shortname="[2002] Amok">[2002] Amok</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Singles\[2004] Giftraum" data-shortname="[2004] Giftraum">[2004] Giftraum</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Singles\[2007] The Plague" data-shortname="[2007] The Plague">[2007] The Plague</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\Diary Of Dreams - Full Discography [1994-2012]\Singles\[2009] King Of Nowhere" data-shortname="[2009] King Of Nowhere">[2009] King Of Nowhere</li></ul></li></ul></li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\Distraction Pieces" data-shortname="Distraction Pieces">Distraction Pieces</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="25" data-full-path="Y:\Music\Drake - Scorpion (2018) [AAC, iTunes]" data-shortname="Drake - Scorpion (2018) [AAC, iTunes]">Drake - Scorpion (2018) [AAC, iTunes]<ul><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Drake - Scorpion (2018) [AAC, iTunes]\Disk 1" data-shortname="Disk 1">Disk 1</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Drake - Scorpion (2018) [AAC, iTunes]\Disk 2" data-shortname="Disk 2">Disk 2</li></ul></li><li class="collection library-item" data-contained-albums="13" data-total-albums="13" data-total-audio-files="132" data-full-path="Y:\Music\Electric Light Orchestra [Discography]" data-shortname="Electric Light Orchestra [Discography]">Electric Light Orchestra [Discography]<ul><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\Electric Light Orchestra [Discography]\1971 - No Answer (320kbps)" data-shortname="1971 - No Answer (320kbps)">1971 - No Answer (320kbps)</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\Electric Light Orchestra [Discography]\1973 - E.L.O. II (320kbps)" data-shortname="1973 - E.L.O. II (320kbps)">1973 - E.L.O. II (320kbps)</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\Electric Light Orchestra [Discography]\1973 - On The Third Day (320kbps)" data-shortname="1973 - On The Third Day (320kbps)">1973 - On The Third Day (320kbps)</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Electric Light Orchestra [Discography]\1974 - Eldorado (320kbps)" data-shortname="1974 - Eldorado (320kbps)">1974 - Eldorado (320kbps)</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\Electric Light Orchestra [Discography]\1975 - Face The Music (320kbps)" data-shortname="1975 - Face The Music (320kbps)">1975 - Face The Music (320kbps)</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\Electric Light Orchestra [Discography]\1976 - A New World Record (320kbps)" data-shortname="1976 - A New World Record (320kbps)">1976 - A New World Record (320kbps)</li><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Music\Electric Light Orchestra [Discography]\1977 - Out Of The Blue (320kbps)" data-shortname="1977 - Out Of The Blue (320kbps)">1977 - Out Of The Blue (320kbps)</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\Electric Light Orchestra [Discography]\1979 - Discovery (320kbps)" data-shortname="1979 - Discovery (320kbps)">1979 - Discovery (320kbps)</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Electric Light Orchestra [Discography]\1980- ELO & Olivia Newton-John - Xanadu (320kbps)" data-shortname="1980- ELO & Olivia Newton-John - Xanadu (320kbps)">1980- ELO & Olivia Newton-John - Xanadu (320kbps)</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Electric Light Orchestra [Discography]\1981 - Time (320kbps)" data-shortname="1981 - Time (320kbps)">1981 - Time (320kbps)</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Electric Light Orchestra [Discography]\1983 - Secret Messages (320kbps)" data-shortname="1983 - Secret Messages (320kbps)">1983 - Secret Messages (320kbps)</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Electric Light Orchestra [Discography]\1986 - Balance Of Power (320kbps)" data-shortname="1986 - Balance Of Power (320kbps)">1986 - Balance Of Power (320kbps)</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Electric Light Orchestra [Discography]\2001- Zoom (320kbps)" data-shortname="2001- Zoom (320kbps)">2001- Zoom (320kbps)</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="98" data-full-path="Y:\Music\Eve-Online Music (CBR) 320 kbps MP3 (thermdynamic) [ThePirateBay]" data-shortname="Eve-Online Music (CBR) 320 kbps MP3 (thermdynamic) [ThePirateBay]">Eve-Online Music (CBR) 320 kbps MP3 (thermdynamic) [ThePirateBay]<ul><li class="album library-item" data-contained-audio-files="27" data-full-path="Y:\Music\Eve-Online Music (CBR) 320 kbps MP3 (thermdynamic) [ThePirateBay]\Eve-Online Music Extras" data-shortname="Eve-Online Music Extras">Eve-Online Music Extras</li><li class="album library-item" data-contained-audio-files="71" data-full-path="Y:\Music\Eve-Online Music (CBR) 320 kbps MP3 (thermdynamic) [ThePirateBay]\Eve-Online Music Jukebox" data-shortname="Eve-Online Music Jukebox">Eve-Online Music Jukebox</li></ul></li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Fireflight - Innova (2015)" data-shortname="Fireflight - Innova (2015)">Fireflight - Innova (2015)</li><li class="collection library-item" data-contained-albums="13" data-total-albums="13" data-total-audio-files="222" data-full-path="Y:\Music\Five Iron Frenzy" data-shortname="Five Iron Frenzy">Five Iron Frenzy<ul><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\Five Iron Frenzy\Five Iron Frenzy - All The Hype That Money Can Buy (2000)" data-shortname="Five Iron Frenzy - All The Hype That Money Can Buy (2000)">Five Iron Frenzy - All The Hype That Money Can Buy (2000)</li><li class="album library-item" data-contained-audio-files="34" data-full-path="Y:\Music\Five Iron Frenzy\Five Iron Frenzy - Cheeses Of Nazareth (2003)" data-shortname="Five Iron Frenzy - Cheeses Of Nazareth (2003)">Five Iron Frenzy - Cheeses Of Nazareth (2003)</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Five Iron Frenzy\Five Iron Frenzy - Electric Boogaloo (2001)" data-shortname="Five Iron Frenzy - Electric Boogaloo (2001)">Five Iron Frenzy - Electric Boogaloo (2001)</li><li class="album library-item" data-contained-audio-files="18" data-full-path="Y:\Music\Five Iron Frenzy\Five Iron Frenzy - Live - Proof That The Youth Are Revolting (1999)" data-shortname="Five Iron Frenzy - Live - Proof That The Youth Are Revolting (1999)">Five Iron Frenzy - Live - Proof That The Youth Are Revolting (1999)</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Five Iron Frenzy\Five Iron Frenzy - Miniature Golf Courses Of America (7 inch EP) (1998)" data-shortname="Five Iron Frenzy - Miniature Golf Courses Of America (7 inch EP) (1998)">Five Iron Frenzy - Miniature Golf Courses Of America (7 inch EP) (1998)</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Five Iron Frenzy\Five Iron Frenzy - Our Newest Album Ever! (1997)" data-shortname="Five Iron Frenzy - Our Newest Album Ever! (1997)">Five Iron Frenzy - Our Newest Album Ever! (1997)</li><li class="album library-item" data-contained-audio-files="19" data-full-path="Y:\Music\Five Iron Frenzy\Five Iron Frenzy - Purple Door" data-shortname="Five Iron Frenzy - Purple Door">Five Iron Frenzy - Purple Door</li><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Music\Five Iron Frenzy\Five Iron Frenzy - Quantity Is Job 1 [EP] (1998)" data-shortname="Five Iron Frenzy - Quantity Is Job 1 [EP] (1998)">Five Iron Frenzy - Quantity Is Job 1 [EP] (1998)</li><li class="album library-item" data-contained-audio-files="25" data-full-path="Y:\Music\Five Iron Frenzy\Five Iron Frenzy - Rarities" data-shortname="Five Iron Frenzy - Rarities">Five Iron Frenzy - Rarities</li><li class="album library-item" data-contained-audio-files="19" data-full-path="Y:\Music\Five Iron Frenzy\Five Iron Frenzy - The End Is Here (Live) (2004)" data-shortname="Five Iron Frenzy - The End Is Here (Live) (2004)">Five Iron Frenzy - The End Is Here (Live) (2004)</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Five Iron Frenzy\Five Iron Frenzy - The End Is Near (2004)" data-shortname="Five Iron Frenzy - The End Is Near (2004)">Five Iron Frenzy - The End Is Near (2004)</li><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\Five Iron Frenzy\Five Iron Frenzy - Upbeats and Beatdowns (1996)" data-shortname="Five Iron Frenzy - Upbeats and Beatdowns (1996)">Five Iron Frenzy - Upbeats and Beatdowns (1996)</li><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Music\Five Iron Frenzy\Five Iron Frenzy - Winter Wonder Rock" data-shortname="Five Iron Frenzy - Winter Wonder Rock">Five Iron Frenzy - Winter Wonder Rock</li></ul></li><li class="library library-item" data-contained-collections="1" data-contained-albums="0" data-total-albums="3" data-total-audio-files="46" data-full-path="Y:\Music\Fleetwood Mac - Fleetwood Mac (Deluxe) (2018) Mp3 (320kbps) [Hunter]" data-shortname="Fleetwood Mac - Fleetwood Mac (Deluxe) (2018) Mp3 (320kbps) [Hunter]">Fleetwood Mac - Fleetwood Mac (Deluxe) (2018) Mp3 (320kbps) [Hunter]<ul><li class="collection library-item" data-contained-albums="3" data-total-albums="3" data-total-audio-files="46" data-full-path="Y:\Music\Fleetwood Mac - Fleetwood Mac (Deluxe) (2018) Mp3 (320kbps) [Hunter]\Fleetwood Mac - Fleetwood Mac (Deluxe) (2018) 320" data-shortname="Fleetwood Mac - Fleetwood Mac (Deluxe) (2018) 320">Fleetwood Mac - Fleetwood Mac (Deluxe) (2018) 320<ul><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\Fleetwood Mac - Fleetwood Mac (Deluxe) (2018) Mp3 (320kbps) [Hunter]\Fleetwood Mac - Fleetwood Mac (Deluxe) (2018) 320\CD1" data-shortname="CD1">CD1</li><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Music\Fleetwood Mac - Fleetwood Mac (Deluxe) (2018) Mp3 (320kbps) [Hunter]\Fleetwood Mac - Fleetwood Mac (Deluxe) (2018) 320\CD2" data-shortname="CD2">CD2</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Fleetwood Mac - Fleetwood Mac (Deluxe) (2018) Mp3 (320kbps) [Hunter]\Fleetwood Mac - Fleetwood Mac (Deluxe) (2018) 320\CD3" data-shortname="CD3">CD3</li></ul></li></ul></li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\Fleetwood Mac - Greatest Hits" data-shortname="Fleetwood Mac - Greatest Hits">Fleetwood Mac - Greatest Hits</li><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Music\Free" data-shortname="Free">Free</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="25" data-full-path="Y:\Music\Gin Blossoms - 2 Albums [FLAC] [h33t] - Kitlope" data-shortname="Gin Blossoms - 2 Albums [FLAC] [h33t] - Kitlope">Gin Blossoms - 2 Albums [FLAC] [h33t] - Kitlope<ul><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Gin Blossoms - 2 Albums [FLAC] [h33t] - Kitlope\Gin Blossoms - Congratulations I'm Sorry 1996" data-shortname="Gin Blossoms - Congratulations I'm Sorry 1996">Gin Blossoms - Congratulations I'm Sorry 1996</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Gin Blossoms - 2 Albums [FLAC] [h33t] - Kitlope\Gin Blossoms - New Miserable Experience 1992" data-shortname="Gin Blossoms - New Miserable Experience 1992">Gin Blossoms - New Miserable Experience 1992</li></ul></li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\Hallucinogen - Twisted" data-shortname="Hallucinogen - Twisted">Hallucinogen - Twisted</li><li class="album library-item" data-contained-audio-files="22" data-full-path="Y:\Music\Hurry Up, We're Dreaming" data-shortname="Hurry Up, We're Dreaming">Hurry Up, We're Dreaming</li><li class="collection library-item" data-contained-albums="15" data-total-albums="15" data-total-audio-files="180" data-full-path="Y:\Music\IN FLAMES - DISCOGRAPHY (1994-14) [CHANNEL NEO]" data-shortname="IN FLAMES - DISCOGRAPHY (1994-14) [CHANNEL NEO]">IN FLAMES - DISCOGRAPHY (1994-14) [CHANNEL NEO]<ul><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\IN FLAMES - DISCOGRAPHY (1994-14) [CHANNEL NEO]\[1994] Lunar Strain [2005 Re-Releases]" data-shortname="[1994] Lunar Strain [2005 Re-Releases]">[1994] Lunar Strain [2005 Re-Releases]</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\IN FLAMES - DISCOGRAPHY (1994-14) [CHANNEL NEO]\[1994] Subterranean [EP]" data-shortname="[1994] Subterranean [EP]">[1994] Subterranean [EP]</li><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\IN FLAMES - DISCOGRAPHY (1994-14) [CHANNEL NEO]\[1996] The Jester Race [2008 Re-Releases + Bonus Japanese Edition]" data-shortname="[1996] The Jester Race [2008 Re-Releases + Bonus Japanese Edition]">[1996] The Jester Race [2008 Re-Releases + Bonus Japanese Edition]</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\IN FLAMES - DISCOGRAPHY (1994-14) [CHANNEL NEO]\[1997] Whoracle [Reissue 2002] (Deluxe Edition)" data-shortname="[1997] Whoracle [Reissue 2002] (Deluxe Edition)">[1997] Whoracle [Reissue 2002] (Deluxe Edition)</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\IN FLAMES - DISCOGRAPHY (1994-14) [CHANNEL NEO]\[1999] Colony (Japanese Edition)" data-shortname="[1999] Colony (Japanese Edition)">[1999] Colony (Japanese Edition)</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\IN FLAMES - DISCOGRAPHY (1994-14) [CHANNEL NEO]\[2000] Clayman [2008 Reloaded Edition]" data-shortname="[2000] Clayman [2008 Reloaded Edition]">[2000] Clayman [2008 Reloaded Edition]</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\IN FLAMES - DISCOGRAPHY (1994-14) [CHANNEL NEO]\[2001] The Tokyo Showdown [Live Album]" data-shortname="[2001] The Tokyo Showdown [Live Album]">[2001] The Tokyo Showdown [Live Album]</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\IN FLAMES - DISCOGRAPHY (1994-14) [CHANNEL NEO]\[2002] Reroute To Remain" data-shortname="[2002] Reroute To Remain">[2002] Reroute To Remain</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\IN FLAMES - DISCOGRAPHY (1994-14) [CHANNEL NEO]\[2003] Trigger [EP]" data-shortname="[2003] Trigger [EP]">[2003] Trigger [EP]</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\IN FLAMES - DISCOGRAPHY (1994-14) [CHANNEL NEO]\[2004] Soundtrack To Your Escape (Korean Edition)" data-shortname="[2004] Soundtrack To Your Escape (Korean Edition)">[2004] Soundtrack To Your Escape (Korean Edition)</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\IN FLAMES - DISCOGRAPHY (1994-14) [CHANNEL NEO]\[2006] Come Clarity (Limited Edition)" data-shortname="[2006] Come Clarity (Limited Edition)">[2006] Come Clarity (Limited Edition)</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\IN FLAMES - DISCOGRAPHY (1994-14) [CHANNEL NEO]\[2008] A Sense Of Purpose" data-shortname="[2008] A Sense Of Purpose">[2008] A Sense Of Purpose</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\IN FLAMES - DISCOGRAPHY (1994-14) [CHANNEL NEO]\[2008] The Mirror's Truth [EP]" data-shortname="[2008] The Mirror's Truth [EP]">[2008] The Mirror's Truth [EP]</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\IN FLAMES - DISCOGRAPHY (1994-14) [CHANNEL NEO]\[2011] Sounds Of A Playground Fading (Japanese Edition)" data-shortname="[2011] Sounds Of A Playground Fading (Japanese Edition)">[2011] Sounds Of A Playground Fading (Japanese Edition)</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\IN FLAMES - DISCOGRAPHY (1994-14) [CHANNEL NEO]\[2014] Siren Charms [Limited Edition]" data-shortname="[2014] Siren Charms [Limited Edition]">[2014] Siren Charms [Limited Edition]</li></ul></li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\IRYDV7~0" data-shortname="IRYDV7~0">IRYDV7~0</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\Ilan Bluestone - Scars (Extended Mixes) 2018 [EDM RG]" data-shortname="Ilan Bluestone - Scars (Extended Mixes) 2018 [EDM RG]">Ilan Bluestone - Scars (Extended Mixes) 2018 [EDM RG]</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Jake Shears - Jake Shears 2018" data-shortname="Jake Shears - Jake Shears 2018">Jake Shears - Jake Shears 2018</li><li class="collection library-item" data-contained-albums="6" data-total-albums="6" data-total-audio-files="64" data-full-path="Y:\Music\Jimi Hendrix - Discography" data-shortname="Jimi Hendrix - Discography">Jimi Hendrix - Discography<ul><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Jimi Hendrix - Discography\Are You Experienced" data-shortname="Are You Experienced">Are You Experienced</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Jimi Hendrix - Discography\Axis - Bold as Love" data-shortname="Axis - Bold as Love">Axis - Bold as Love</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\Jimi Hendrix - Discography\Band of Gypsys" data-shortname="Band of Gypsys">Band of Gypsys</li><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\Jimi Hendrix - Discography\Electric Ladyland" data-shortname="Electric Ladyland">Electric Ladyland</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\Jimi Hendrix - Discography\Rainbow Bridge Vinyl Rip" data-shortname="Rainbow Bridge Vinyl Rip">Rainbow Bridge Vinyl Rip</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Jimi Hendrix - Discography\The Cry of Love Vinyl Rip" data-shortname="The Cry of Love Vinyl Rip">The Cry of Love Vinyl Rip</li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="1" data-full-path="Y:\Music\Jonny Lang - Signs (2017) (Mp3 320kbps) [Hunter] SSEC" data-shortname="Jonny Lang - Signs (2017) (Mp3 320kbps) [Hunter] SSEC">Jonny Lang - Signs (2017) (Mp3 320kbps) [Hunter] SSEC<ul><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Jonny Lang - Signs (2017) (Mp3 320kbps) [Hunter] SSEC\Jonny Lang - Signs (2017)" data-shortname="Jonny Lang - Signs (2017)">Jonny Lang - Signs (2017)</li></ul></li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\Kaaris-Okou_Gnakouri-FR-2016-SO.www.torrent9.ws" data-shortname="Kaaris-Okou_Gnakouri-FR-2016-SO.www.torrent9.ws">Kaaris-Okou_Gnakouri-FR-2016-SO.www.torrent9.ws</li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="1" data-full-path="Y:\Music\Kygo - Stargazing EP (2017) (Mp3 320kbps) [Hunter]" data-shortname="Kygo - Stargazing EP (2017) (Mp3 320kbps) [Hunter]">Kygo - Stargazing EP (2017) (Mp3 320kbps) [Hunter]<ul><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Kygo - Stargazing EP (2017) (Mp3 320kbps) [Hunter]\Kygo - Stargazing EP (2017)" data-shortname="Kygo - Stargazing EP (2017)">Kygo - Stargazing EP (2017)</li></ul></li><li class="path library-item" data-total-albums="15" data-total-audio-files="115" data-full-path="Y:\Music\Led Zeppelin - Discography [2156] PL" data-shortname="Led Zeppelin - Discography [2156] PL">Led Zeppelin - Discography [2156] PL<ul><li class="library library-item" data-contained-collections="1" data-contained-albums="8" data-total-albums="10" data-total-audio-files="81" data-full-path="Y:\Music\Led Zeppelin - Discography [2156] PL\01. Studio albums" data-shortname="01. Studio albums">01. Studio albums<ul><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\Led Zeppelin - Discography [2156] PL\01. Studio albums\01. Led Zeppelin (1969)" data-shortname="01. Led Zeppelin (1969)">01. Led Zeppelin (1969)</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\Led Zeppelin - Discography [2156] PL\01. Studio albums\02. Led Zeppelin II (1969)" data-shortname="02. Led Zeppelin II (1969)">02. Led Zeppelin II (1969)</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Led Zeppelin - Discography [2156] PL\01. Studio albums\03. Led Zeppelin III (1970)" data-shortname="03. Led Zeppelin III (1970)">03. Led Zeppelin III (1970)</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\Led Zeppelin - Discography [2156] PL\01. Studio albums\04. Led Zeppelin IV (1971)" data-shortname="04. Led Zeppelin IV (1971)">04. Led Zeppelin IV (1971)</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\Led Zeppelin - Discography [2156] PL\01. Studio albums\05. Houses of The Holy (1973)" data-shortname="05. Houses of The Holy (1973)">05. Houses of The Holy (1973)</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="15" data-full-path="Y:\Music\Led Zeppelin - Discography [2156] PL\01. Studio albums\06. Physical Graffiti (1975)" data-shortname="06. Physical Graffiti (1975)">06. Physical Graffiti (1975)<ul><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\Led Zeppelin - Discography [2156] PL\01. Studio albums\06. Physical Graffiti (1975)\CD1" data-shortname="CD1">CD1</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\Led Zeppelin - Discography [2156] PL\01. Studio albums\06. Physical Graffiti (1975)\CD2" data-shortname="CD2">CD2</li></ul></li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\Led Zeppelin - Discography [2156] PL\01. Studio albums\07. Presence (1976)" data-shortname="07. Presence (1976)">07. Presence (1976)</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\Led Zeppelin - Discography [2156] PL\01. Studio albums\08. In Through The Out Door (1979)" data-shortname="08. In Through The Out Door (1979)">08. In Through The Out Door (1979)</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\Led Zeppelin - Discography [2156] PL\01. Studio albums\09. Coda (1982)" data-shortname="09. Coda (1982)">09. Coda (1982)</li></ul></li><li class="library library-item" data-contained-collections="2" data-contained-albums="0" data-total-albums="5" data-total-audio-files="34" data-full-path="Y:\Music\Led Zeppelin - Discography [2156] PL\02. Live albums" data-shortname="02. Live albums">02. Live albums<ul><li class="collection library-item" data-contained-albums="3" data-total-albums="3" data-total-audio-files="18" data-full-path="Y:\Music\Led Zeppelin - Discography [2156] PL\02. Live albums\01. How the West Was Won (2003)" data-shortname="01. How the West Was Won (2003)">01. How the West Was Won (2003)<ul><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Led Zeppelin - Discography [2156] PL\02. Live albums\01. How the West Was Won (2003)\CD1" data-shortname="CD1">CD1</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Led Zeppelin - Discography [2156] PL\02. Live albums\01. How the West Was Won (2003)\CD2" data-shortname="CD2">CD2</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Led Zeppelin - Discography [2156] PL\02. Live albums\01. How the West Was Won (2003)\CD3" data-shortname="CD3">CD3</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="16" data-full-path="Y:\Music\Led Zeppelin - Discography [2156] PL\02. Live albums\02. Celebration Day (2012)" data-shortname="02. Celebration Day (2012)">02. Celebration Day (2012)<ul><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\Led Zeppelin - Discography [2156] PL\02. Live albums\02. Celebration Day (2012)\CD1" data-shortname="CD1">CD1</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\Led Zeppelin - Discography [2156] PL\02. Live albums\02. Celebration Day (2012)\CD2" data-shortname="CD2">CD2</li></ul></li></ul></li></ul></li><li class="library library-item" data-contained-collections="2" data-contained-albums="0" data-total-albums="97" data-total-audio-files="584" data-full-path="Y:\Music\Linkin Park" data-shortname="Linkin Park">Linkin Park<ul><li class="library library-item" data-contained-collections="6" data-contained-albums="8" data-total-albums="22" data-total-audio-files="237" data-full-path="Y:\Music\Linkin Park\Albums" data-shortname="Albums">Albums<ul><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="5" data-full-path="Y:\Music\Linkin Park\Albums\01 - Hybrid Theory (2000)" data-shortname="01 - Hybrid Theory (2000)">01 - Hybrid Theory (2000)<ul><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\Linkin Park\Albums\01 - Hybrid Theory (2000)\Special Edition Bonus Tracks" data-shortname="Special Edition Bonus Tracks">Special Edition Bonus Tracks</li></ul></li><li class="album library-item" data-contained-audio-files="20" data-full-path="Y:\Music\Linkin Park\Albums\02 - Reanimation (2002)" data-shortname="02 - Reanimation (2002)">02 - Reanimation (2002)</li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="3" data-full-path="Y:\Music\Linkin Park\Albums\03 - Meteora (2003)" data-shortname="03 - Meteora (2003)">03 - Meteora (2003)<ul><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Albums\03 - Meteora (2003)\Deluxe Edition" data-shortname="Deluxe Edition">Deluxe Edition</li></ul></li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Linkin Park\Albums\04 - Live in Texas (2003)" data-shortname="04 - Live in Texas (2003)">04 - Live in Texas (2003)</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\Linkin Park\Albums\05 - Collision Course (feat. Jay-Z) (2004)" data-shortname="05 - Collision Course (feat. Jay-Z) (2004)">05 - Collision Course (feat. Jay-Z) (2004)</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\Linkin Park\Albums\05 - Collision Course (feat. Jay-Z) (Clean) (2004)" data-shortname="05 - Collision Course (feat. Jay-Z) (Clean) (2004)">05 - Collision Course (feat. Jay-Z) (Clean) (2004)</li><li class="collection library-item" data-contained-albums="7" data-total-albums="7" data-total-audio-files="17" data-full-path="Y:\Music\Linkin Park\Albums\06 - Minutes To Midnight (2007)" data-shortname="06 - Minutes To Midnight (2007)">06 - Minutes To Midnight (2007)<ul><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\Linkin Park\Albums\06 - Minutes To Midnight (2007)\Asian Digital Download Tour Edition Bonus Tracks" data-shortname="Asian Digital Download Tour Edition Bonus Tracks">Asian Digital Download Tour Edition Bonus Tracks</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Linkin Park\Albums\06 - Minutes To Midnight (2007)\Best Buy Edition Bonus Tracks" data-shortname="Best Buy Edition Bonus Tracks">Best Buy Edition Bonus Tracks</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Albums\06 - Minutes To Midnight (2007)\European Digital Download Tour Edition Bonus Tracks" data-shortname="European Digital Download Tour Edition Bonus Tracks">European Digital Download Tour Edition Bonus Tracks</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Linkin Park\Albums\06 - Minutes To Midnight (2007)\International Version" data-shortname="International Version">International Version</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Linkin Park\Albums\06 - Minutes To Midnight (2007)\Japan Edition Bonus Track" data-shortname="Japan Edition Bonus Track">Japan Edition Bonus Track</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Albums\06 - Minutes To Midnight (2007)\Tour Edition Bonus Tracks" data-shortname="Tour Edition Bonus Tracks">Tour Edition Bonus Tracks</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Linkin Park\Albums\06 - Minutes To Midnight (2007)\Wal-Mart Exclusive Bonus Tracks" data-shortname="Wal-Mart Exclusive Bonus Tracks">Wal-Mart Exclusive Bonus Tracks</li></ul></li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Linkin Park\Albums\06 - Minutes To Midnight (Clean) (2007)" data-shortname="06 - Minutes To Midnight (Clean) (2007)">06 - Minutes To Midnight (Clean) (2007)</li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="3" data-full-path="Y:\Music\Linkin Park\Albums\07 - Road To Revolution Live At Milton Keynes (DVD Bonus) (2008)" data-shortname="07 - Road To Revolution Live At Milton Keynes (DVD Bonus) (2008)">07 - Road To Revolution Live At Milton Keynes (DVD Bonus) (2008)<ul><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Albums\07 - Road To Revolution Live At Milton Keynes (DVD Bonus) (2008)\DVD bonus" data-shortname="DVD bonus">DVD bonus</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="2" data-full-path="Y:\Music\Linkin Park\Albums\08 - A Thousand Suns (2010)" data-shortname="08 - A Thousand Suns (2010)">08 - A Thousand Suns (2010)<ul><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Linkin Park\Albums\08 - A Thousand Suns (2010)\HMV Exlusive Bonus Track" data-shortname="HMV Exlusive Bonus Track">HMV Exlusive Bonus Track</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Linkin Park\Albums\08 - A Thousand Suns (2010)\Japan Edition Bonus Track" data-shortname="Japan Edition Bonus Track">Japan Edition Bonus Track</li></ul></li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\Linkin Park\Albums\08 - A Thousand Suns (Clean) (2010)" data-shortname="08 - A Thousand Suns (Clean) (2010)">08 - A Thousand Suns (Clean) (2010)</li><li class="album library-item" data-contained-audio-files="18" data-full-path="Y:\Music\Linkin Park\Albums\09 - A Thousand Suns Plus - Live In Madrid (2011)" data-shortname="09 - A Thousand Suns Plus - Live In Madrid (2011)">09 - A Thousand Suns Plus - Live In Madrid (2011)</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="14" data-full-path="Y:\Music\Linkin Park\Albums\10 - LIVING THINGS (2012)" data-shortname="10 - LIVING THINGS (2012)">10 - LIVING THINGS (2012)<ul><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\Linkin Park\Albums\10 - LIVING THINGS (2012)\Australian Tour Edition Bonus Tracks" data-shortname="Australian Tour Edition Bonus Tracks">Australian Tour Edition Bonus Tracks</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\Linkin Park\Albums\10 - LIVING THINGS (2012)\LIVING THINGS Remix Subscription" data-shortname="LIVING THINGS Remix Subscription">LIVING THINGS Remix Subscription</li></ul></li><li class="album library-item" data-contained-audio-files="22" data-full-path="Y:\Music\Linkin Park\Albums\10 - LIVING THINGS Acapellas And Instrumentals (2012)" data-shortname="10 - LIVING THINGS Acapellas And Instrumentals (2012)">10 - LIVING THINGS Acapellas And Instrumentals (2012)</li></ul></li><li class="library library-item" data-contained-collections="1" data-contained-albums="0" data-total-albums="4" data-total-audio-files="37" data-full-path="Y:\Music\Linkin Park\Bootlegs" data-shortname="Bootlegs">Bootlegs<ul><li class="collection library-item" data-contained-albums="4" data-total-albums="4" data-total-audio-files="37" data-full-path="Y:\Music\Linkin Park\Bootlegs\Linkin Park - Around The World" data-shortname="Linkin Park - Around The World">Linkin Park - Around The World<ul><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\Linkin Park\Bootlegs\Linkin Park - Around The World\01 - Hybrid Theory - Live Around The World" data-shortname="01 - Hybrid Theory - Live Around The World">01 - Hybrid Theory - Live Around The World</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\Linkin Park\Bootlegs\Linkin Park - Around The World\02 - Meteora - Live Around The World" data-shortname="02 - Meteora - Live Around The World">02 - Meteora - Live Around The World</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Linkin Park\Bootlegs\Linkin Park - Around The World\03 - Minutes To Midnight - Live Around The World" data-shortname="03 - Minutes To Midnight - Live Around The World">03 - Minutes To Midnight - Live Around The World</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Linkin Park\Bootlegs\Linkin Park - Around The World\04 - A Thousand Suns - Live Around The World" data-shortname="04 - A Thousand Suns - Live Around The World">04 - A Thousand Suns - Live Around The World</li></ul></li></ul></li><li class="library library-item" data-contained-collections="1" data-contained-albums="5" data-total-albums="6" data-total-audio-files="39" data-full-path="Y:\Music\Linkin Park\Extended Plays" data-shortname="Extended Plays">Extended Plays<ul><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\Linkin Park\Extended Plays\1999 - Hybrid Theory EP" data-shortname="1999 - Hybrid Theory EP">1999 - Hybrid Theory EP</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\Linkin Park\Extended Plays\2002 - In the End (Live & Rare)" data-shortname="2002 - In the End (Live & Rare)">2002 - In the End (Live & Rare)</li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="1" data-full-path="Y:\Music\Linkin Park\Extended Plays\2008 - Songs from the Underground" data-shortname="2008 - Songs from the Underground">2008 - Songs from the Underground<ul><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Linkin Park\Extended Plays\2008 - Songs from the Underground\Downloadable Bonus Track" data-shortname="Downloadable Bonus Track">Downloadable Bonus Track</li></ul></li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\Linkin Park\Extended Plays\2010 - 8 bit Rebellion" data-shortname="2010 - 8 bit Rebellion">2010 - 8 bit Rebellion</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\Linkin Park\Extended Plays\2011 - North American Tour EP" data-shortname="2011 - North American Tour EP">2011 - North American Tour EP</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Linkin Park\Extended Plays\2013 - CASTLE OF GLASS" data-shortname="2013 - CASTLE OF GLASS">2013 - CASTLE OF GLASS</li></ul></li><li class="collection library-item" data-contained-albums="12" data-total-albums="12" data-total-audio-files="93" data-full-path="Y:\Music\Linkin Park\LPU" data-shortname="LPU">LPU<ul><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\Linkin Park\LPU\2002 - Underground 2.0" data-shortname="2002 - Underground 2.0">2002 - Underground 2.0</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\Linkin Park\LPU\2003 - Underground 3.0" data-shortname="2003 - Underground 3.0">2003 - Underground 3.0</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\Linkin Park\LPU\2004 - Underground 4.0" data-shortname="2004 - Underground 4.0">2004 - Underground 4.0</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\Linkin Park\LPU\2005 - Underground 5.0" data-shortname="2005 - Underground 5.0">2005 - Underground 5.0</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\Linkin Park\LPU\2006 - Underground 6.0" data-shortname="2006 - Underground 6.0">2006 - Underground 6.0</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Linkin Park\LPU\2007 - Underground 7.0" data-shortname="2007 - Underground 7.0">2007 - Underground 7.0</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\Linkin Park\LPU\2008 - Underground 8.0 (mmm...Cookies - Sweet Hamster Like Jewels From America!)" data-shortname="2008 - Underground 8.0 (mmm...Cookies - Sweet Hamster Like Jewels From America!)">2008 - Underground 8.0 (mmm...Cookies - Sweet Hamster Like Jewels From America!)</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\Linkin Park\LPU\2009 - Underground 9.0 (Demos)" data-shortname="2009 - Underground 9.0 (Demos)">2009 - Underground 9.0 (Demos)</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\Linkin Park\LPU\2009 - Underground 9.0 (Demos) Acetate Disc" data-shortname="2009 - Underground 9.0 (Demos) Acetate Disc">2009 - Underground 9.0 (Demos) Acetate Disc</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Linkin Park\LPU\2010 - Underground X" data-shortname="2010 - Underground X">2010 - Underground X</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Linkin Park\LPU\2011 - Underground 11" data-shortname="2011 - Underground 11">2011 - Underground 11</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Linkin Park\LPU\2012 - Underground 12" data-shortname="2012 - Underground 12">2012 - Underground 12</li></ul></li><li class="library library-item" data-contained-collections="14" data-contained-albums="13" data-total-albums="42" data-total-audio-files="107" data-full-path="Y:\Music\Linkin Park\Singles" data-shortname="Singles">Singles<ul><li class="collection library-item" data-contained-albums="3" data-total-albums="3" data-total-audio-files="8" data-full-path="Y:\Music\Linkin Park\Singles\01 - One Step Closer (2000)" data-shortname="01 - One Step Closer (2000)">01 - One Step Closer (2000)<ul><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\01 - One Step Closer (2000)\Humble Brothers Remixes Internal Review CDR" data-shortname="Humble Brothers Remixes Internal Review CDR">Humble Brothers Remixes Internal Review CDR</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\01 - One Step Closer (2000)\UK CD Single" data-shortname="UK CD Single">UK CD Single</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Linkin Park\Singles\01 - One Step Closer (2000)\USA Radio CD [Version 2]" data-shortname="USA Radio CD [Version 2]">USA Radio CD [Version 2]</li></ul></li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Linkin Park\Singles\02 - Crawling (2001)" data-shortname="02 - Crawling (2001)">02 - Crawling (2001)</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\03 - Papercut (2001)" data-shortname="03 - Papercut (2001)">03 - Papercut (2001)</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="6" data-full-path="Y:\Music\Linkin Park\Singles\04 - In The End (2001)" data-shortname="04 - In The End (2001)">04 - In The End (2001)<ul><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\04 - In The End (2001)\In the End CD1" data-shortname="In the End CD1">In the End CD1</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\04 - In The End (2001)\In the End CD2" data-shortname="In the End CD2">In the End CD2</li></ul></li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Linkin Park\Singles\05 - ENTH E ND_FRGT10 (2002)" data-shortname="05 - ENTH E ND_FRGT10 (2002)">05 - ENTH E ND_FRGT10 (2002)</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\06 - PTS.OF.ATHRTY (2002)" data-shortname="06 - PTS.OF.ATHRTY (2002)">06 - PTS.OF.ATHRTY (2002)</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\07 - H! VLTG3 (2002)" data-shortname="07 - H! VLTG3 (2002)">07 - H! VLTG3 (2002)</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\08 - Somewhere I Belong (2003)" data-shortname="08 - Somewhere I Belong (2003)">08 - Somewhere I Belong (2003)</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\09 - Faint (2003)" data-shortname="09 - Faint (2003)">09 - Faint (2003)</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="4" data-full-path="Y:\Music\Linkin Park\Singles\10 - Numb (2003)" data-shortname="10 - Numb (2003)">10 - Numb (2003)<ul><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Linkin Park\Singles\10 - Numb (2003)\Numb CD1" data-shortname="Numb CD1">Numb CD1</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Linkin Park\Singles\10 - Numb (2003)\Numb CD2" data-shortname="Numb CD2">Numb CD2</li></ul></li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\11 - From the Inside (2003)" data-shortname="11 - From the Inside (2003)">11 - From the Inside (2003)</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Linkin Park\Singles\12 - Breaking the Habit (2004)" data-shortname="12 - Breaking the Habit (2004)">12 - Breaking the Habit (2004)</li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="2" data-full-path="Y:\Music\Linkin Park\Singles\13 - Numb Encore (2004)" data-shortname="13 - Numb Encore (2004)">13 - Numb Encore (2004)<ul><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Linkin Park\Singles\13 - Numb Encore (2004)\Numb Encore (CD Single)" data-shortname="Numb Encore (CD Single)">Numb Encore (CD Single)</li></ul></li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\14 - What I've Done (2007)" data-shortname="14 - What I've Done (2007)">14 - What I've Done (2007)</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="4" data-full-path="Y:\Music\Linkin Park\Singles\15 - Bleed It Out (2007)" data-shortname="15 - Bleed It Out (2007)">15 - Bleed It Out (2007)<ul><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\15 - Bleed It Out (2007)\AU Single" data-shortname="AU Single">AU Single</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Linkin Park\Singles\15 - Bleed It Out (2007)\EU Radio CD" data-shortname="EU Radio CD">EU Radio CD</li></ul></li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\16 - Shadow Of The Day (2007)" data-shortname="16 - Shadow Of The Day (2007)">16 - Shadow Of The Day (2007)</li><li class="collection library-item" data-contained-albums="3" data-total-albums="3" data-total-audio-files="6" data-full-path="Y:\Music\Linkin Park\Singles\17 - Given Up (2007)" data-shortname="17 - Given Up (2007)">17 - Given Up (2007)<ul><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\17 - Given Up (2007)\Digital Single (from music.ovi.com)" data-shortname="Digital Single (from music.ovi.com)">Digital Single (from music.ovi.com)</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Linkin Park\Singles\17 - Given Up (2007)\EU Radio CD" data-shortname="EU Radio CD">EU Radio CD</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Linkin Park\Singles\17 - Given Up (2007)\German CD" data-shortname="German CD">German CD</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="6" data-full-path="Y:\Music\Linkin Park\Singles\18 - Leave Out All The Rest (2008)" data-shortname="18 - Leave Out All The Rest (2008)">18 - Leave Out All The Rest (2008)<ul><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\18 - Leave Out All The Rest (2008)\Japanese CD" data-shortname="Japanese CD">Japanese CD</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\18 - Leave Out All The Rest (2008)\Single CD" data-shortname="Single CD">Single CD</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="6" data-full-path="Y:\Music\Linkin Park\Singles\19 - We Made It (feat. Busta Rhymes) (2008)" data-shortname="19 - We Made It (feat. Busta Rhymes) (2008)">19 - We Made It (feat. Busta Rhymes) (2008)<ul><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\19 - We Made It (feat. Busta Rhymes) (2008)\Promo CDS" data-shortname="Promo CDS">Promo CDS</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\19 - We Made It (feat. Busta Rhymes) (2008)\Single CD" data-shortname="Single CD">Single CD</li></ul></li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\20 - New Divide (2009)" data-shortname="20 - New Divide (2009)">20 - New Divide (2009)</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="4" data-full-path="Y:\Music\Linkin Park\Singles\21 - The Catalyst (2010)" data-shortname="21 - The Catalyst (2010)">21 - The Catalyst (2010)<ul><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Linkin Park\Singles\21 - The Catalyst (2010)\UK Radio CD" data-shortname="UK Radio CD">UK Radio CD</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Linkin Park\Singles\21 - The Catalyst (2010)\USA CD" data-shortname="USA CD">USA CD</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\22 - Waiting for the End (2010)" data-shortname="22 - Waiting for the End (2010)">22 - Waiting for the End (2010)<ul><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Linkin Park\Singles\22 - Waiting for the End (2010)\German CD" data-shortname="German CD">German CD</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Linkin Park\Singles\22 - Waiting for the End (2010)\Promo (Non Rap Version)" data-shortname="Promo (Non Rap Version)">Promo (Non Rap Version)</li></ul></li><li class="collection library-item" data-contained-albums="3" data-total-albums="3" data-total-audio-files="6" data-full-path="Y:\Music\Linkin Park\Singles\23 - Burning In The Skies (2011)" data-shortname="23 - Burning In The Skies (2011)">23 - Burning In The Skies (2011)<ul><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Linkin Park\Singles\23 - Burning In The Skies (2011)\CD Single" data-shortname="CD Single">CD Single</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\23 - Burning In The Skies (2011)\Digital Single (from music.ovi.com)" data-shortname="Digital Single (from music.ovi.com)">Digital Single (from music.ovi.com)</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Linkin Park\Singles\23 - Burning In The Skies (2011)\UK Radio CD" data-shortname="UK Radio CD">UK Radio CD</li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\24 - Iridescent (2011)" data-shortname="24 - Iridescent (2011)">24 - Iridescent (2011)<ul><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\24 - Iridescent (2011)\CD Single" data-shortname="CD Single">CD Single</li></ul></li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Linkin Park\Singles\25 - BURN IT DOWN (2012)" data-shortname="25 - BURN IT DOWN (2012)">25 - BURN IT DOWN (2012)</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="5" data-full-path="Y:\Music\Linkin Park\Singles\26 - LOST IN THE ECHO (2012)" data-shortname="26 - LOST IN THE ECHO (2012)">26 - LOST IN THE ECHO (2012)<ul><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\26 - LOST IN THE ECHO (2012)\Promo CDM" data-shortname="Promo CDM">Promo CDM</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Linkin Park\Singles\26 - LOST IN THE ECHO (2012)\Single CD" data-shortname="Single CD">Single CD</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="5" data-full-path="Y:\Music\Linkin Park\Singles\27 - CASTLE OF GLASS (2012)" data-shortname="27 - CASTLE OF GLASS (2012)">27 - CASTLE OF GLASS (2012)<ul><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\Linkin Park\Singles\27 - CASTLE OF GLASS (2012)\Promo CDM" data-shortname="Promo CDM">Promo CDM</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Linkin Park\Singles\27 - CASTLE OF GLASS (2012)\Single CD" data-shortname="Single CD">Single CD</li></ul></li></ul></li><li class="collection library-item" data-contained-albums="11" data-total-albums="11" data-total-audio-files="66" data-full-path="Y:\Music\Linkin Park\Unreleased, Demos, & Other" data-shortname="Unreleased, Demos, & Other">Unreleased, Demos, & Other<ul><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Linkin Park\Unreleased, Demos, & Other\1997 - Xero" data-shortname="1997 - Xero">1997 - Xero</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Linkin Park\Unreleased, Demos, & Other\1999 - Hybrid Theory (2-Track Demo)" data-shortname="1999 - Hybrid Theory (2-Track Demo)">1999 - Hybrid Theory (2-Track Demo)</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\Linkin Park\Unreleased, Demos, & Other\1999 - Hybrid Theory 8-track Demo CD" data-shortname="1999 - Hybrid Theory 8-track Demo CD">1999 - Hybrid Theory 8-track Demo CD</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\Linkin Park\Unreleased, Demos, & Other\2000 - 7-track Demo CD" data-shortname="2000 - 7-track Demo CD">2000 - 7-track Demo CD</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Linkin Park\Unreleased, Demos, & Other\2000 - Hybrid Theory (Unmastered Studio Finals 5-7-00)" data-shortname="2000 - Hybrid Theory (Unmastered Studio Finals 5-7-00)">2000 - Hybrid Theory (Unmastered Studio Finals 5-7-00)</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\Linkin Park\Unreleased, Demos, & Other\2000 - Hybrid Theory 6-Track Internal Demo CD" data-shortname="2000 - Hybrid Theory 6-Track Internal Demo CD">2000 - Hybrid Theory 6-Track Internal Demo CD</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\Linkin Park\Unreleased, Demos, & Other\2000 - Hybrid Theory Demos" data-shortname="2000 - Hybrid Theory Demos">2000 - Hybrid Theory Demos</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Linkin Park\Unreleased, Demos, & Other\2000 - Plaster" data-shortname="2000 - Plaster">2000 - Plaster</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Linkin Park\Unreleased, Demos, & Other\2002 - Reanimation Demos" data-shortname="2002 - Reanimation Demos">2002 - Reanimation Demos</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\Linkin Park\Unreleased, Demos, & Other\2002 - Reanimation Internal Demo CD" data-shortname="2002 - Reanimation Internal Demo CD">2002 - Reanimation Internal Demo CD</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\Linkin Park\Unreleased, Demos, & Other\2012 - Stagelight Demos" data-shortname="2012 - Stagelight Demos">2012 - Stagelight Demos</li></ul></li></ul></li><li class="library library-item" data-contained-collections="1" data-contained-albums="0" data-total-albums="2" data-total-audio-files="46" data-full-path="Y:\Music\Linkin Park - Greatest Hits [MP3~320Kbps]~[Hunter] [FRG]" data-shortname="Linkin Park - Greatest Hits [MP3~320Kbps]~[Hunter] [FRG]">Linkin Park - Greatest Hits [MP3~320Kbps]~[Hunter] [FRG]<ul><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="46" data-full-path="Y:\Music\Linkin Park - Greatest Hits [MP3~320Kbps]~[Hunter] [FRG]\Linkin Park-Greatest Hits 320kbps" data-shortname="Linkin Park-Greatest Hits 320kbps">Linkin Park-Greatest Hits 320kbps<ul><li class="album library-item" data-contained-audio-files="23" data-full-path="Y:\Music\Linkin Park - Greatest Hits [MP3~320Kbps]~[Hunter] [FRG]\Linkin Park-Greatest Hits 320kbps\CD1" data-shortname="CD1">CD1</li><li class="album library-item" data-contained-audio-files="23" data-full-path="Y:\Music\Linkin Park - Greatest Hits [MP3~320Kbps]~[Hunter] [FRG]\Linkin Park-Greatest Hits 320kbps\CD2" data-shortname="CD2">CD2</li></ul></li></ul></li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\M83 - Junk (2016) 320" data-shortname="M83 - Junk (2016) 320">M83 - Junk (2016) 320</li><li class="album library-item" data-contained-audio-files="18" data-full-path="Y:\Music\Macklemore & Ryan Lewis - The Heist [Deluxe Edition] [2012] (iTunes+Extra videos+Digital Booklet) [F10]" data-shortname="Macklemore & Ryan Lewis - The Heist [Deluxe Edition] [2012] (iTunes+Extra videos+Digital Booklet) [F10]">Macklemore & Ryan Lewis - The Heist [Deluxe Edition] [2012] (iTunes+Extra videos+Digital Booklet) [F10]</li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="16" data-full-path="Y:\Music\Macklemore - GEMINI (2017) (Mp3 320kbps) [Hunter]" data-shortname="Macklemore - GEMINI (2017) (Mp3 320kbps) [Hunter]">Macklemore - GEMINI (2017) (Mp3 320kbps) [Hunter]<ul><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\Macklemore - GEMINI (2017) (Mp3 320kbps) [Hunter]\Macklemore - GEMINI (2017)" data-shortname="Macklemore - GEMINI (2017)">Macklemore - GEMINI (2017)</li></ul></li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\Makeup and Vanity Set - Charles Park III" data-shortname="Makeup and Vanity Set - Charles Park III">Makeup and Vanity Set - Charles Park III</li><li class="collection library-item" data-contained-albums="9" data-total-albums="9" data-total-audio-files="114" data-full-path="Y:\Music\Mighty Mighty Bosstones-Discography MrD [ tRg Music Release ]" data-shortname="Mighty Mighty Bosstones-Discography MrD [ tRg Music Release ]">Mighty Mighty Bosstones-Discography MrD [ tRg Music Release ]<ul><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Mighty Mighty Bosstones-Discography MrD [ tRg Music Release ]\Mighty Mighty Bosstones - 1990 - Devil's Night Out" data-shortname="Mighty Mighty Bosstones - 1990 - Devil's Night Out">Mighty Mighty Bosstones - 1990 - Devil's Night Out</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Mighty Mighty Bosstones-Discography MrD [ tRg Music Release ]\Mighty Mighty Bosstones - 1992 - More Noise And Other Disturbances" data-shortname="Mighty Mighty Bosstones - 1992 - More Noise And Other Disturbances">Mighty Mighty Bosstones - 1992 - More Noise And Other Disturbances</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Mighty Mighty Bosstones-Discography MrD [ tRg Music Release ]\Mighty Mighty Bosstones - 1993 - Don't Know How To Party" data-shortname="Mighty Mighty Bosstones - 1993 - Don't Know How To Party">Mighty Mighty Bosstones - 1993 - Don't Know How To Party</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\Mighty Mighty Bosstones-Discography MrD [ tRg Music Release ]\Mighty Mighty Bosstones - 1993 - Ska-Core, The Devil, And More" data-shortname="Mighty Mighty Bosstones - 1993 - Ska-Core, The Devil, And More">Mighty Mighty Bosstones - 1993 - Ska-Core, The Devil, And More</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Mighty Mighty Bosstones-Discography MrD [ tRg Music Release ]\Mighty Mighty Bosstones - 1994 - Question The Answers" data-shortname="Mighty Mighty Bosstones - 1994 - Question The Answers">Mighty Mighty Bosstones - 1994 - Question The Answers</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Mighty Mighty Bosstones-Discography MrD [ tRg Music Release ]\Mighty Mighty Bosstones - 1997 - Let's Face It" data-shortname="Mighty Mighty Bosstones - 1997 - Let's Face It">Mighty Mighty Bosstones - 1997 - Let's Face It</li><li class="album library-item" data-contained-audio-files="22" data-full-path="Y:\Music\Mighty Mighty Bosstones-Discography MrD [ tRg Music Release ]\Mighty Mighty Bosstones - 1998 - Live From The Middle East" data-shortname="Mighty Mighty Bosstones - 1998 - Live From The Middle East">Mighty Mighty Bosstones - 1998 - Live From The Middle East</li><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\Mighty Mighty Bosstones-Discography MrD [ tRg Music Release ]\Mighty Mighty Bosstones - 2000 - Pay Attention" data-shortname="Mighty Mighty Bosstones - 2000 - Pay Attention">Mighty Mighty Bosstones - 2000 - Pay Attention</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Mighty Mighty Bosstones-Discography MrD [ tRg Music Release ]\Mighty Mighty Bosstones - 2002 - A Jackknife To A Swan" data-shortname="Mighty Mighty Bosstones - 2002 - A Jackknife To A Swan">Mighty Mighty Bosstones - 2002 - A Jackknife To A Swan</li></ul></li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Mogwai - Les Revenants Soundtrack (2013)" data-shortname="Mogwai - Les Revenants Soundtrack (2013)">Mogwai - Les Revenants Soundtrack (2013)</li><li class="collection library-item" data-contained-albums="7" data-total-albums="7" data-total-audio-files="94" data-full-path="Y:\Music\Mustard Plug" data-shortname="Mustard Plug">Mustard Plug<ul><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\Mustard Plug\Big Daddy Multitude" data-shortname="Big Daddy Multitude">Big Daddy Multitude</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Mustard Plug\Can't Contain It" data-shortname="Can't Contain It">Can't Contain It</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Mustard Plug\Evildoers Beware" data-shortname="Evildoers Beware">Evildoers Beware</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Mustard Plug\In Black And White" data-shortname="In Black And White">In Black And White</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Mustard Plug\Pray For Mojo" data-shortname="Pray For Mojo">Pray For Mojo</li><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\Mustard Plug\Skapocalypse Now!" data-shortname="Skapocalypse Now!">Skapocalypse Now!</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Mustard Plug\Yellow #5" data-shortname="Yellow #5">Yellow #5</li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="11" data-full-path="Y:\Music\NEEDTOBREATHE - H A R D L O V E (2016) [MP3~320Kbps]~[Hunter] [FRG]" data-shortname="NEEDTOBREATHE - H A R D L O V E (2016) [MP3~320Kbps]~[Hunter] [FRG]">NEEDTOBREATHE - H A R D L O V E (2016) [MP3~320Kbps]~[Hunter] [FRG]<ul><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\NEEDTOBREATHE - H A R D L O V E (2016) [MP3~320Kbps]~[Hunter] [FRG]\NEEDTOBREATHE - H A R D L O V E" data-shortname="NEEDTOBREATHE - H A R D L O V E">NEEDTOBREATHE - H A R D L O V E</li></ul></li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\OSI -2009- Blood" data-shortname="OSI -2009- Blood">OSI -2009- Blood</li><li class="collection library-item" data-contained-albums="3" data-total-albums="3" data-total-audio-files="22" data-full-path="Y:\Music\Out of System Transfer" data-shortname="Out of System Transfer">Out of System Transfer<ul><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Out of System Transfer\Out of System Transfer - Junkyard Golem" data-shortname="Out of System Transfer - Junkyard Golem">Out of System Transfer - Junkyard Golem</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Out of System Transfer\Out of System Transfer - Make Mine Neat-Last Dogs in Alaska" data-shortname="Out of System Transfer - Make Mine Neat-Last Dogs in Alaska">Out of System Transfer - Make Mine Neat-Last Dogs in Alaska</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\Out of System Transfer\Out of System Transfer - Same Rat- Different Hat" data-shortname="Out of System Transfer - Same Rat- Different Hat">Out of System Transfer - Same Rat- Different Hat</li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="18" data-full-path="Y:\Music\Owl City - Cinematic (2018) Mp3 (320kbps) [Hunter]" data-shortname="Owl City - Cinematic (2018) Mp3 (320kbps) [Hunter]">Owl City - Cinematic (2018) Mp3 (320kbps) [Hunter]<ul><li class="album library-item" data-contained-audio-files="18" data-full-path="Y:\Music\Owl City - Cinematic (2018) Mp3 (320kbps) [Hunter]\Owl City - Cinematic (2018)" data-shortname="Owl City - Cinematic (2018)">Owl City - Cinematic (2018)</li></ul></li><li class="library library-item" data-contained-collections="2" data-contained-albums="0" data-total-albums="15" data-total-audio-files="171" data-full-path="Y:\Music\Parliament" data-shortname="Parliament">Parliament<ul><li class="collection library-item" data-contained-albums="10" data-total-albums="10" data-total-audio-files="87" data-full-path="Y:\Music\Parliament\Albums" data-shortname="Albums">Albums<ul><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Parliament\Albums\Parliament (1970) - Osmium" data-shortname="Parliament (1970) - Osmium">Parliament (1970) - Osmium</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\Parliament\Albums\Parliament (1974) - Up For The Down Stroke" data-shortname="Parliament (1974) - Up For The Down Stroke">Parliament (1974) - Up For The Down Stroke</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\Parliament\Albums\Parliament (1975) - Chocolate City" data-shortname="Parliament (1975) - Chocolate City">Parliament (1975) - Chocolate City</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\Parliament\Albums\Parliament (1975) - Mothership Connection" data-shortname="Parliament (1975) - Mothership Connection">Parliament (1975) - Mothership Connection</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\Parliament\Albums\Parliament (1976) - The Clones Of Dr. Funkenstein" data-shortname="Parliament (1976) - The Clones Of Dr. Funkenstein">Parliament (1976) - The Clones Of Dr. Funkenstein</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\Parliament\Albums\Parliament (1977) - Funkentelechy Vs. The Placebo Syndrome" data-shortname="Parliament (1977) - Funkentelechy Vs. The Placebo Syndrome">Parliament (1977) - Funkentelechy Vs. The Placebo Syndrome</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Parliament\Albums\Parliament (1977) - Live - P. Funk Earth Tour" data-shortname="Parliament (1977) - Live - P. Funk Earth Tour">Parliament (1977) - Live - P. Funk Earth Tour</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\Parliament\Albums\Parliament (1978) - Motor Booty Affair" data-shortname="Parliament (1978) - Motor Booty Affair">Parliament (1978) - Motor Booty Affair</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\Parliament\Albums\Parliament (1979) - Gloryhallastoopid (Or Pin The Tail On The Funky)" data-shortname="Parliament (1979) - Gloryhallastoopid (Or Pin The Tail On The Funky)">Parliament (1979) - Gloryhallastoopid (Or Pin The Tail On The Funky)</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\Parliament\Albums\Parliament (1980) - Trombipulation" data-shortname="Parliament (1980) - Trombipulation">Parliament (1980) - Trombipulation</li></ul></li><li class="collection library-item" data-contained-albums="5" data-total-albums="5" data-total-audio-files="84" data-full-path="Y:\Music\Parliament\Compilations" data-shortname="Compilations">Compilations<ul><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Parliament\Compilations\Parliament (1984) - Parliament's Greatest Hits - Uncut Funk... The Bomb" data-shortname="Parliament (1984) - Parliament's Greatest Hits - Uncut Funk... The Bomb">Parliament (1984) - Parliament's Greatest Hits - Uncut Funk... The Bomb</li><li class="album library-item" data-contained-audio-files="25" data-full-path="Y:\Music\Parliament\Compilations\Parliament (1993) - Tear The Roof Off - 1974-1980" data-shortname="Parliament (1993) - Tear The Roof Off - 1974-1980">Parliament (1993) - Tear The Roof Off - 1974-1980</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Parliament\Compilations\Parliament (1995) - The Best Of Parliament - Give Up the Funk" data-shortname="Parliament (1995) - The Best Of Parliament - Give Up the Funk">Parliament (1995) - The Best Of Parliament - Give Up the Funk</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Parliament\Compilations\Parliament (2000) - The Best Of Parliament (20th Century Masters - The Millennium Collection)" data-shortname="Parliament (2000) - The Best Of Parliament (20th Century Masters - The Millennium Collection)">Parliament (2000) - The Best Of Parliament (20th Century Masters - The Millennium Collection)</li><li class="album library-item" data-contained-audio-files="24" data-full-path="Y:\Music\Parliament\Compilations\Parliament (2005) - Gold" data-shortname="Parliament (2005) - Gold">Parliament (2005) - Gold</li></ul></li></ul></li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\Paul van Dyk - Music Rescues Me - 2018 (320 kbps)" data-shortname="Paul van Dyk - Music Rescues Me - 2018 (320 kbps)">Paul van Dyk - Music Rescues Me - 2018 (320 kbps)</li><li class="album library-item" data-contained-audio-files="23" data-full-path="Y:\Music\Paul's Boutique [20th Anniversary Remastered Edition]" data-shortname="Paul's Boutique [20th Anniversary Remastered Edition]">Paul's Boutique [20th Anniversary Remastered Edition]</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Paula_Cole-Courage-2007" data-shortname="Paula_Cole-Courage-2007">Paula_Cole-Courage-2007</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\Pete Seeger - The Essential Pete Seeger (2005) [FLAC]" data-shortname="Pete Seeger - The Essential Pete Seeger (2005) [FLAC]">Pete Seeger - The Essential Pete Seeger (2005) [FLAC]</li><li class="library library-item" data-contained-collections="2" data-contained-albums="21" data-total-albums="25" data-total-audio-files="314" data-full-path="Y:\Music\Pink Floyd [1967-2014]" data-shortname="Pink Floyd [1967-2014]">Pink Floyd [1967-2014]<ul><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1967 - The Piper At The Gates Of Dawn" data-shortname="1967 - The Piper At The Gates Of Dawn">1967 - The Piper At The Gates Of Dawn</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1968 - A Saucerful Of Secrets" data-shortname="1968 - A Saucerful Of Secrets">1968 - A Saucerful Of Secrets</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1969 - More" data-shortname="1969 - More">1969 - More</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="16" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1969 - Ummagumma" data-shortname="1969 - Ummagumma">1969 - Ummagumma<ul><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1969 - Ummagumma\Live Album" data-shortname="Live Album">Live Album</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1969 - Ummagumma\Studio Album" data-shortname="Studio Album">Studio Album</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="11" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1970 - Atom Heart Mother" data-shortname="1970 - Atom Heart Mother">1970 - Atom Heart Mother<ul><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1970 - Atom Heart Mother\Atom Heart Mother" data-shortname="Atom Heart Mother">Atom Heart Mother</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1970 - Atom Heart Mother\Atom Heart Mother Suite" data-shortname="Atom Heart Mother Suite">Atom Heart Mother Suite</li></ul></li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1971 - Meddle" data-shortname="1971 - Meddle">1971 - Meddle</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1971 - Relics" data-shortname="1971 - Relics">1971 - Relics</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1972 - Obscured By Clouds" data-shortname="1972 - Obscured By Clouds">1972 - Obscured By Clouds</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1973 - Dark Side Of The Moon" data-shortname="1973 - Dark Side Of The Moon">1973 - Dark Side Of The Moon</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1975 - Shine On You Crazy Diamond" data-shortname="1975 - Shine On You Crazy Diamond">1975 - Shine On You Crazy Diamond</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1975 - Wish You Are Here" data-shortname="1975 - Wish You Are Here">1975 - Wish You Are Here</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1977 - Animals" data-shortname="1977 - Animals">1977 - Animals</li><li class="album library-item" data-contained-audio-files="26" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1979 - The Wall" data-shortname="1979 - The Wall">1979 - The Wall</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1981 - Live At Pompeii" data-shortname="1981 - Live At Pompeii">1981 - Live At Pompeii</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1983 - The Final Cut" data-shortname="1983 - The Final Cut">1983 - The Final Cut</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1987 - A Momentary Lapse Of Reason" data-shortname="1987 - A Momentary Lapse Of Reason">1987 - A Momentary Lapse Of Reason</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1988 - Delicate Sound Of Thunder" data-shortname="1988 - Delicate Sound Of Thunder">1988 - Delicate Sound Of Thunder</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1992 - The Division Bell" data-shortname="1992 - The Division Bell">1992 - The Division Bell</li><li class="album library-item" data-contained-audio-files="24" data-full-path="Y:\Music\Pink Floyd [1967-2014]\1995 - Pulse" data-shortname="1995 - Pulse">1995 - Pulse</li><li class="album library-item" data-contained-audio-files="30" data-full-path="Y:\Music\Pink Floyd [1967-2014]\2000 - Is There Anybody Out There, The Wall Live 1980-81" data-shortname="2000 - Is There Anybody Out There, The Wall Live 1980-81">2000 - Is There Anybody Out There, The Wall Live 1980-81</li><li class="album library-item" data-contained-audio-files="26" data-full-path="Y:\Music\Pink Floyd [1967-2014]\2001 - Echoes, The Best Of Pink Floyd" data-shortname="2001 - Echoes, The Best Of Pink Floyd">2001 - Echoes, The Best Of Pink Floyd</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Pink Floyd [1967-2014]\2003 - Dark Side Of The Moon, 30th Anniversary" data-shortname="2003 - Dark Side Of The Moon, 30th Anniversary">2003 - Dark Side Of The Moon, 30th Anniversary</li><li class="album library-item" data-contained-audio-files="21" data-full-path="Y:\Music\Pink Floyd [1967-2014]\2014 - The Endless River (Deluxe Edition)" data-shortname="2014 - The Endless River (Deluxe Edition)">2014 - The Endless River (Deluxe Edition)</li></ul></li><li class="album library-item" data-contained-audio-files="26" data-full-path="Y:\Music\Pink Floyd 1979 The Wall 2011 Remastered 320 Kbps" data-shortname="Pink Floyd 1979 The Wall 2011 Remastered 320 Kbps">Pink Floyd 1979 The Wall 2011 Remastered 320 Kbps</li><li class="album library-item" data-contained-audio-files="27" data-full-path="Y:\Music\Pink_Floyd-Creation_The_Early_Years-(Remastered)-2CD-2016-C4" data-shortname="Pink_Floyd-Creation_The_Early_Years-(Remastered)-2CD-2016-C4">Pink_Floyd-Creation_The_Early_Years-(Remastered)-2CD-2016-C4</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="40" data-full-path="Y:\Music\R.E.M - Part Lies Part Heart Part Truth Part Garbage [2011] [only1joe] 320kbsMP3" data-shortname="R.E.M - Part Lies Part Heart Part Truth Part Garbage [2011] [only1joe] 320kbsMP3">R.E.M - Part Lies Part Heart Part Truth Part Garbage [2011] [only1joe] 320kbsMP3<ul><li class="album library-item" data-contained-audio-files="21" data-full-path="Y:\Music\R.E.M - Part Lies Part Heart Part Truth Part Garbage [2011] [only1joe] 320kbsMP3\R.E.M - Part Lies Part Heart Part Truth Part Garbage 1982-2011 [CD-01] [2011]" data-shortname="R.E.M - Part Lies Part Heart Part Truth Part Garbage 1982-2011 [CD-01] [2011]">R.E.M - Part Lies Part Heart Part Truth Part Garbage 1982-2011 [CD-01] [2011]</li><li class="album library-item" data-contained-audio-files="19" data-full-path="Y:\Music\R.E.M - Part Lies Part Heart Part Truth Part Garbage [2011] [only1joe] 320kbsMP3\R.E.M - Part Lies Part Heart Part Truth Part Garbage 1982-2011 [CD-02] [2011]" data-shortname="R.E.M - Part Lies Part Heart Part Truth Part Garbage 1982-2011 [CD-02] [2011]">R.E.M - Part Lies Part Heart Part Truth Part Garbage 1982-2011 [CD-02] [2011]</li></ul></li><li class="album library-item" data-contained-audio-files="34" data-full-path="Y:\Music\Ramin.Djawadi.Westworld.Season.1.2016.soundtrack.flac" data-shortname="Ramin.Djawadi.Westworld.Season.1.2016.soundtrack.flac">Ramin.Djawadi.Westworld.Season.1.2016.soundtrack.flac</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Rumours" data-shortname="Rumours">Rumours</li><li class="library library-item" data-contained-collections="3" data-contained-albums="7" data-total-albums="13" data-total-audio-files="158" data-full-path="Y:\Music\SLIPKNOT - DISCOGRAPHY (1996-14) [CHANNEL NEO]" data-shortname="SLIPKNOT - DISCOGRAPHY (1996-14) [CHANNEL NEO]">SLIPKNOT - DISCOGRAPHY (1996-14) [CHANNEL NEO]<ul><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\SLIPKNOT - DISCOGRAPHY (1996-14) [CHANNEL NEO]\[1996] Mate. Feed. Kill. Repeat" data-shortname="[1996] Mate. Feed. Kill. Repeat">[1996] Mate. Feed. Kill. Repeat</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\SLIPKNOT - DISCOGRAPHY (1996-14) [CHANNEL NEO]\[1997] Demo Tape [EP]" data-shortname="[1997] Demo Tape [EP]">[1997] Demo Tape [EP]</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\SLIPKNOT - DISCOGRAPHY (1996-14) [CHANNEL NEO]\[1998] Demo Tape [EP]" data-shortname="[1998] Demo Tape [EP]">[1998] Demo Tape [EP]</li><li class="album library-item" data-contained-audio-files="20" data-full-path="Y:\Music\SLIPKNOT - DISCOGRAPHY (1996-14) [CHANNEL NEO]\[1999] Slipknot" data-shortname="[1999] Slipknot">[1999] Slipknot</li><li class="album library-item" data-contained-audio-files="25" data-full-path="Y:\Music\SLIPKNOT - DISCOGRAPHY (1996-14) [CHANNEL NEO]\[1999] Slipknot [10th Anniversary Edition]" data-shortname="[1999] Slipknot [10th Anniversary Edition]">[1999] Slipknot [10th Anniversary Edition]</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\SLIPKNOT - DISCOGRAPHY (1996-14) [CHANNEL NEO]\[2001] Iowa" data-shortname="[2001] Iowa">[2001] Iowa</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="22" data-full-path="Y:\Music\SLIPKNOT - DISCOGRAPHY (1996-14) [CHANNEL NEO]\[2004] Vol. 3 The Subliminal Verses (Australian Tour Edition)" data-shortname="[2004] Vol. 3 The Subliminal Verses (Australian Tour Edition)">[2004] Vol. 3 The Subliminal Verses (Australian Tour Edition)<ul><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\SLIPKNOT - DISCOGRAPHY (1996-14) [CHANNEL NEO]\[2004] Vol. 3 The Subliminal Verses (Australian Tour Edition)\CD 1" data-shortname="CD 1">CD 1</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\SLIPKNOT - DISCOGRAPHY (1996-14) [CHANNEL NEO]\[2004] Vol. 3 The Subliminal Verses (Australian Tour Edition)\CD 2" data-shortname="CD 2">CD 2</li></ul></li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\SLIPKNOT - DISCOGRAPHY (1996-14) [CHANNEL NEO]\[2008] All Hope Is Gone" data-shortname="[2008] All Hope Is Gone">[2008] All Hope Is Gone</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="24" data-full-path="Y:\Music\SLIPKNOT - DISCOGRAPHY (1996-14) [CHANNEL NEO]\[2009] 9.0. (Live)" data-shortname="[2009] 9.0. (Live)">[2009] 9.0. (Live)<ul><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\SLIPKNOT - DISCOGRAPHY (1996-14) [CHANNEL NEO]\[2009] 9.0. (Live)\CD 1" data-shortname="CD 1">CD 1</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\SLIPKNOT - DISCOGRAPHY (1996-14) [CHANNEL NEO]\[2009] 9.0. (Live)\CD 2" data-shortname="CD 2">CD 2</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="19" data-full-path="Y:\Music\SLIPKNOT - DISCOGRAPHY (1996-14) [CHANNEL NEO]\[2014] .5 The Gray Chapter [Deluxe Edition]" data-shortname="[2014] .5 The Gray Chapter [Deluxe Edition]">[2014] .5 The Gray Chapter [Deluxe Edition]<ul><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\SLIPKNOT - DISCOGRAPHY (1996-14) [CHANNEL NEO]\[2014] .5 The Gray Chapter [Deluxe Edition]\CD 1" data-shortname="CD 1">CD 1</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\SLIPKNOT - DISCOGRAPHY (1996-14) [CHANNEL NEO]\[2014] .5 The Gray Chapter [Deluxe Edition]\CD 2" data-shortname="CD 2">CD 2</li></ul></li></ul></li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Shpongle - Are You Shpongled FLAC" data-shortname="Shpongle - Are You Shpongled FLAC">Shpongle - Are You Shpongled FLAC</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Simon & Garfunkel - Bridge Over Troubled Water 1970 [MP3 @ 320](oan)" data-shortname="Simon & Garfunkel - Bridge Over Troubled Water 1970 [MP3 @ 320](oan)">Simon & Garfunkel - Bridge Over Troubled Water 1970 [MP3 @ 320](oan)</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\Simon & Garfunkel - Sounds Of Silence 1966 [MP3 @ 320](oan)" data-shortname="Simon & Garfunkel - Sounds Of Silence 1966 [MP3 @ 320](oan)">Simon & Garfunkel - Sounds Of Silence 1966 [MP3 @ 320](oan)</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\Simon & Garfunkel - Wednesday Morning, 3 A.M.1964 [MP3 @ 320](oan)" data-shortname="Simon & Garfunkel - Wednesday Morning, 3 A.M.1964 [MP3 @ 320](oan)">Simon & Garfunkel - Wednesday Morning, 3 A.M.1964 [MP3 @ 320](oan)</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Simon And Garfunkel - Bookends (1968) [MP3]" data-shortname="Simon And Garfunkel - Bookends (1968) [MP3]">Simon And Garfunkel - Bookends (1968) [MP3]</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Simon And Garfunkel - Parsley Sage Rosemary and Thyme" data-shortname="Simon And Garfunkel - Parsley Sage Rosemary and Thyme">Simon And Garfunkel - Parsley Sage Rosemary and Thyme</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Sixpence None The Richer - 2004 - The Best Of" data-shortname="Sixpence None The Richer - 2004 - The Best Of">Sixpence None The Richer - 2004 - The Best Of</li><li class="collection library-item" data-contained-albums="7" data-total-albums="7" data-total-audio-files="89" data-full-path="Y:\Music\Static-X" data-shortname="Static-X">Static-X<ul><li class="album library-item" data-contained-audio-files="18" data-full-path="Y:\Music\Static-X\Beneath... Between... Beyond" data-shortname="Beneath... Between... Beyond">Beneath... Between... Beyond</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Static-X\Cannibal" data-shortname="Cannibal">Cannibal</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Static-X\Cult of Static" data-shortname="Cult of Static">Cult of Static</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Static-X\Machine" data-shortname="Machine">Machine</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Static-X\Shadow Zone" data-shortname="Shadow Zone">Shadow Zone</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Static-X\Start A War" data-shortname="Start A War">Start A War</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Static-X\Wisconsin Death Trip" data-shortname="Wisconsin Death Trip">Wisconsin Death Trip</li></ul></li><li class="collection library-item" data-contained-albums="11" data-total-albums="11" data-total-audio-files="115" data-full-path="Y:\Music\Superchick Discography 2001-2013 (11 Releases)" data-shortname="Superchick Discography 2001-2013 (11 Releases)">Superchick Discography 2001-2013 (11 Releases)<ul><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\Superchick Discography 2001-2013 (11 Releases)\Superchick - 2001 - Karaoke Superstars" data-shortname="Superchick - 2001 - Karaoke Superstars">Superchick - 2001 - Karaoke Superstars</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Superchick Discography 2001-2013 (11 Releases)\Superchick - 2002 - Last One Picked" data-shortname="Superchick - 2002 - Last One Picked">Superchick - 2002 - Last One Picked</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\Superchick Discography 2001-2013 (11 Releases)\Superchick - 2003 - Regeneration" data-shortname="Superchick - 2003 - Regeneration">Superchick - 2003 - Regeneration</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Superchick Discography 2001-2013 (11 Releases)\Superchick - 2005 - Beauty From Pain" data-shortname="Superchick - 2005 - Beauty From Pain">Superchick - 2005 - Beauty From Pain</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Superchick Discography 2001-2013 (11 Releases)\Superchick - 2006 - Beauty From Pain 1.1" data-shortname="Superchick - 2006 - Beauty From Pain 1.1">Superchick - 2006 - Beauty From Pain 1.1</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\Superchick Discography 2001-2013 (11 Releases)\Superchick - 2006 - We Live - Vinyl Promo" data-shortname="Superchick - 2006 - We Live - Vinyl Promo">Superchick - 2006 - We Live - Vinyl Promo</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Superchick Discography 2001-2013 (11 Releases)\Superchick - 2008 - A Film And Television Collection" data-shortname="Superchick - 2008 - A Film And Television Collection">Superchick - 2008 - A Film And Television Collection</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Superchick Discography 2001-2013 (11 Releases)\Superchick - 2008 - Rock What You Got" data-shortname="Superchick - 2008 - Rock What You Got">Superchick - 2008 - Rock What You Got</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\Superchick Discography 2001-2013 (11 Releases)\Superchick - 2009 - Stand In The Rain EP" data-shortname="Superchick - 2009 - Stand In The Rain EP">Superchick - 2009 - Stand In The Rain EP</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Superchick Discography 2001-2013 (11 Releases)\Superchick - 2010 - Reinvention" data-shortname="Superchick - 2010 - Reinvention">Superchick - 2010 - Reinvention</li><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\Superchick Discography 2001-2013 (11 Releases)\Superchick - 2013 - Recollection" data-shortname="Superchick - 2013 - Recollection">Superchick - 2013 - Recollection</li></ul></li><li class="collection library-item" data-contained-albums="11" data-total-albums="11" data-total-audio-files="110" data-full-path="Y:\Music\THE BIRTHDAY MASSACRE - DISCOGRAPHY (2000-14) [CHANNEL NEO]" data-shortname="THE BIRTHDAY MASSACRE - DISCOGRAPHY (2000-14) [CHANNEL NEO]">THE BIRTHDAY MASSACRE - DISCOGRAPHY (2000-14) [CHANNEL NEO]<ul><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\THE BIRTHDAY MASSACRE - DISCOGRAPHY (2000-14) [CHANNEL NEO]\[2000] Imagica (Demo 1)" data-shortname="[2000] Imagica (Demo 1)">[2000] Imagica (Demo 1)</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\THE BIRTHDAY MASSACRE - DISCOGRAPHY (2000-14) [CHANNEL NEO]\[2001] Imagica (Demo 2)" data-shortname="[2001] Imagica (Demo 2)">[2001] Imagica (Demo 2)</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\THE BIRTHDAY MASSACRE - DISCOGRAPHY (2000-14) [CHANNEL NEO]\[2002] Nothing And Nowhere" data-shortname="[2002] Nothing And Nowhere">[2002] Nothing And Nowhere</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\THE BIRTHDAY MASSACRE - DISCOGRAPHY (2000-14) [CHANNEL NEO]\[2005] Violet" data-shortname="[2005] Violet">[2005] Violet</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\THE BIRTHDAY MASSACRE - DISCOGRAPHY (2000-14) [CHANNEL NEO]\[2007] Walking With Strangers" data-shortname="[2007] Walking With Strangers">[2007] Walking With Strangers</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\THE BIRTHDAY MASSACRE - DISCOGRAPHY (2000-14) [CHANNEL NEO]\[2008] Looking Glass [EP]" data-shortname="[2008] Looking Glass [EP]">[2008] Looking Glass [EP]</li><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\THE BIRTHDAY MASSACRE - DISCOGRAPHY (2000-14) [CHANNEL NEO]\[2009] Show And Tell (Live Album)" data-shortname="[2009] Show And Tell (Live Album)">[2009] Show And Tell (Live Album)</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\THE BIRTHDAY MASSACRE - DISCOGRAPHY (2000-14) [CHANNEL NEO]\[2010] Pins and Needles" data-shortname="[2010] Pins and Needles">[2010] Pins and Needles</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\THE BIRTHDAY MASSACRE - DISCOGRAPHY (2000-14) [CHANNEL NEO]\[2011] Imaginary Monsters [EP]" data-shortname="[2011] Imaginary Monsters [EP]">[2011] Imaginary Monsters [EP]</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\THE BIRTHDAY MASSACRE - DISCOGRAPHY (2000-14) [CHANNEL NEO]\[2012] Hide and Seek" data-shortname="[2012] Hide and Seek">[2012] Hide and Seek</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\THE BIRTHDAY MASSACRE - DISCOGRAPHY (2000-14) [CHANNEL NEO]\[2014] Superstition" data-shortname="[2014] Superstition">[2014] Superstition</li></ul></li><li class="library library-item" data-contained-collections="4" data-contained-albums="15" data-total-albums="22" data-total-audio-files="182" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]" data-shortname="THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]">THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]<ul><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[1995] Exit Planet Dust" data-shortname="[1995] Exit Planet Dust">[1995] Exit Planet Dust</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[1996] Live At The Social Volume 1" data-shortname="[1996] Live At The Social Volume 1">[1996] Live At The Social Volume 1</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[1997] Chemical Reaction" data-shortname="[1997] Chemical Reaction">[1997] Chemical Reaction</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[1997] Dig Your Own Hole" data-shortname="[1997] Dig Your Own Hole">[1997] Dig Your Own Hole</li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="2" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[1997] Radio 1 Anti-Nazi Mix [2 CD]" data-shortname="[1997] Radio 1 Anti-Nazi Mix [2 CD]">[1997] Radio 1 Anti-Nazi Mix [2 CD]<ul><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[1997] Radio 1 Anti-Nazi Mix [2 CD]\CD 2 - Interview with Peter Paphides" data-shortname="CD 2 - Interview with Peter Paphides">CD 2 - Interview with Peter Paphides</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="13" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[1998] Singles. Exclusive Limited Edition [2 CD]" data-shortname="[1998] Singles. Exclusive Limited Edition [2 CD]">[1998] Singles. Exclusive Limited Edition [2 CD]<ul><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[1998] Singles. Exclusive Limited Edition [2 CD]\CD 1" data-shortname="CD 1">CD 1</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[1998] Singles. Exclusive Limited Edition [2 CD]\CD 2" data-shortname="CD 2">CD 2</li></ul></li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[1999] Surrender" data-shortname="[1999] Surrender">[1999] Surrender</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[2001] Kick Out The Jams" data-shortname="[2001] Kick Out The Jams">[2001] Kick Out The Jams</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[2002] Come With Us" data-shortname="[2002] Come With Us">[2002] Come With Us</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="19" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[2003] Singles 93-03 [2 CD]" data-shortname="[2003] Singles 93-03 [2 CD]">[2003] Singles 93-03 [2 CD]<ul><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[2003] Singles 93-03 [2 CD]\CD 1" data-shortname="CD 1">CD 1</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[2003] Singles 93-03 [2 CD]\CD 2" data-shortname="CD 2">CD 2</li></ul></li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[2005] Push The Button" data-shortname="[2005] Push The Button">[2005] Push The Button</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[2005] The Remixes Vol. 06" data-shortname="[2005] The Remixes Vol. 06">[2005] The Remixes Vol. 06</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[2007] We Are The Night" data-shortname="[2007] We Are The Night">[2007] We Are The Night</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="13" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[2008] Brotherhood [2 CD]" data-shortname="[2008] Brotherhood [2 CD]">[2008] Brotherhood [2 CD]<ul><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[2008] Brotherhood [2 CD]\CD 1" data-shortname="CD 1">CD 1</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[2008] Brotherhood [2 CD]\CD 2" data-shortname="CD 2">CD 2</li></ul></li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[2008] Remixes" data-shortname="[2008] Remixes">[2008] Remixes</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[2010] Further" data-shortname="[2010] Further">[2010] Further</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[2010] Sunday Times" data-shortname="[2010] Sunday Times">[2010] Sunday Times</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[2011] Hanna" data-shortname="[2011] Hanna">[2011] Hanna</li><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\THE CHEMICAL BROTHERS - DISCOGRAPHY (1995-15) [CHANNEL NEO]\[2015] Born in the Echoes (Japanese Edition)" data-shortname="[2015] Born in the Echoes (Japanese Edition)">[2015] Born in the Echoes (Japanese Edition)</li></ul></li><li class="path library-item" data-total-albums="12" data-total-audio-files="147" data-full-path="Y:\Music\THE DOORS - Discography 1965-2008 Mp3 320 kbps" data-shortname="THE DOORS - Discography 1965-2008 Mp3 320 kbps">THE DOORS - Discography 1965-2008 Mp3 320 kbps<ul><li class="library library-item" data-contained-collections="1" data-contained-albums="9" data-total-albums="11" data-total-audio-files="146" data-full-path="Y:\Music\THE DOORS - Discography 1965-2008 Mp3 320 kbps\1 Studio albums" data-shortname="1 Studio albums">1 Studio albums<ul><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\THE DOORS - Discography 1965-2008 Mp3 320 kbps\1 Studio albums\1967 Strange Days (40th Anniversary Boxed Set) @320" data-shortname="1967 Strange Days (40th Anniversary Boxed Set) @320">1967 Strange Days (40th Anniversary Boxed Set) @320</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\THE DOORS - Discography 1965-2008 Mp3 320 kbps\1 Studio albums\1967 The Doors (40th Anniversary Boxed Set) @320" data-shortname="1967 The Doors (40th Anniversary Boxed Set) @320">1967 The Doors (40th Anniversary Boxed Set) @320</li><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\THE DOORS - Discography 1965-2008 Mp3 320 kbps\1 Studio albums\1968 Waiting For The Sun (40th Anniversary Boxed Set) @320" data-shortname="1968 Waiting For The Sun (40th Anniversary Boxed Set) @320">1968 Waiting For The Sun (40th Anniversary Boxed Set) @320</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\THE DOORS - Discography 1965-2008 Mp3 320 kbps\1 Studio albums\1969 The Soft Parade (40th Anniversary Boxed Set) @320" data-shortname="1969 The Soft Parade (40th Anniversary Boxed Set) @320">1969 The Soft Parade (40th Anniversary Boxed Set) @320</li><li class="album library-item" data-contained-audio-files="21" data-full-path="Y:\Music\THE DOORS - Discography 1965-2008 Mp3 320 kbps\1 Studio albums\1970 Morrison Hotel - Hard Rock Cafe (40th Anniversary Boxed Set) @320" data-shortname="1970 Morrison Hotel - Hard Rock Cafe (40th Anniversary Boxed Set) @320">1970 Morrison Hotel - Hard Rock Cafe (40th Anniversary Boxed Set) @320</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\THE DOORS - Discography 1965-2008 Mp3 320 kbps\1 Studio albums\1971 LA Woman (40th Anniversary Boxed Set) @320" data-shortname="1971 LA Woman (40th Anniversary Boxed Set) @320">1971 LA Woman (40th Anniversary Boxed Set) @320</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\THE DOORS - Discography 1965-2008 Mp3 320 kbps\1 Studio albums\1971 Other Voices @320" data-shortname="1971 Other Voices @320">1971 Other Voices @320</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\THE DOORS - Discography 1965-2008 Mp3 320 kbps\1 Studio albums\1972 Full Circle @320" data-shortname="1972 Full Circle @320">1972 Full Circle @320</li><li class="album library-item" data-contained-audio-files="23" data-full-path="Y:\Music\THE DOORS - Discography 1965-2008 Mp3 320 kbps\1 Studio albums\1978 An American Prayer @320" data-shortname="1978 An American Prayer @320">1978 An American Prayer @320</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="16" data-full-path="Y:\Music\THE DOORS - Discography 1965-2008 Mp3 320 kbps\1 Studio albums\2007 Infected Mushroom Presents - The Doors Remixed (2 CD) @320" data-shortname="2007 Infected Mushroom Presents - The Doors Remixed (2 CD) @320">2007 Infected Mushroom Presents - The Doors Remixed (2 CD) @320<ul><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\THE DOORS - Discography 1965-2008 Mp3 320 kbps\1 Studio albums\2007 Infected Mushroom Presents - The Doors Remixed (2 CD) @320\CD1" data-shortname="CD1">CD1</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\THE DOORS - Discography 1965-2008 Mp3 320 kbps\1 Studio albums\2007 Infected Mushroom Presents - The Doors Remixed (2 CD) @320\CD2" data-shortname="CD2">CD2</li></ul></li></ul></li><li class="library library-item" data-contained-collections="1" data-contained-albums="0" data-total-albums="1" data-total-audio-files="1" data-full-path="Y:\Music\THE DOORS - Discography 1965-2008 Mp3 320 kbps\2 Live albums" data-shortname="2 Live albums">2 Live albums<ul><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="1" data-full-path="Y:\Music\THE DOORS - Discography 1965-2008 Mp3 320 kbps\2 Live albums\1967 (Mar 7th) The Complete Matrix Club Tapes (4 CD) @320" data-shortname="1967 (Mar 7th) The Complete Matrix Club Tapes (4 CD) @320">1967 (Mar 7th) The Complete Matrix Club Tapes (4 CD) @320<ul><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\THE DOORS - Discography 1965-2008 Mp3 320 kbps\2 Live albums\1967 (Mar 7th) The Complete Matrix Club Tapes (4 CD) @320\1967-03-07(10) The Complete Matrix Club Tapes CD1 (1994)(320)" data-shortname="1967-03-07(10) The Complete Matrix Club Tapes CD1 (1994)(320)">1967-03-07(10) The Complete Matrix Club Tapes CD1 (1994)(320)</li></ul></li></ul></li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="10" data-full-path="Y:\Music\TOOL - Fear Inoculum (Deluxe) (2019) Mp3 (320kbps) [Hunter]" data-shortname="TOOL - Fear Inoculum (Deluxe) (2019) Mp3 (320kbps) [Hunter]">TOOL - Fear Inoculum (Deluxe) (2019) Mp3 (320kbps) [Hunter]<ul><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\TOOL - Fear Inoculum (Deluxe) (2019) Mp3 (320kbps) [Hunter]\TOOL - Fear Inoculum (Deluxe) (2019)" data-shortname="TOOL - Fear Inoculum (Deluxe) (2019)">TOOL - Fear Inoculum (Deluxe) (2019)</li></ul></li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Talking Heads - Little Creatures (1985)" data-shortname="Talking Heads - Little Creatures (1985)">Talking Heads - Little Creatures (1985)</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Talking Heads - More Songs About Buildings and Food (1978)" data-shortname="Talking Heads - More Songs About Buildings and Food (1978)">Talking Heads - More Songs About Buildings and Food (1978)</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\Talking Heads - Remain in Light (1980)" data-shortname="Talking Heads - Remain in Light (1980)">Talking Heads - Remain in Light (1980)</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\Talking Heads - Speaking in Tongues (1983)" data-shortname="Talking Heads - Speaking in Tongues (1983)">Talking Heads - Speaking in Tongues (1983)</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Talking Heads - Talking Heads-77 (1977)" data-shortname="Talking Heads - Talking Heads-77 (1977)">Talking Heads - Talking Heads-77 (1977)</li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="1" data-full-path="Y:\Music\Taylor Swift - Reputation (2017) (AAC iTunes) [Hunter]" data-shortname="Taylor Swift - Reputation (2017) (AAC iTunes) [Hunter]">Taylor Swift - Reputation (2017) (AAC iTunes) [Hunter]<ul><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\Taylor Swift - Reputation (2017) (AAC iTunes) [Hunter]\Taylor Swift - Reputation (2017)" data-shortname="Taylor Swift - Reputation (2017)">Taylor Swift - Reputation (2017)</li></ul></li><li class="path library-item" data-total-albums="16" data-total-audio-files="226" data-full-path="Y:\Music\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]" data-shortname="The Beatles - Stereo and Mono Box Sets + Extras [FLAC]">The Beatles - Stereo and Mono Box Sets + Extras [FLAC]<ul><li class="library library-item" data-contained-collections="2" data-contained-albums="12" data-total-albums="16" data-total-audio-files="226" data-full-path="Y:\Music\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set" data-shortname="The Beatles Stereo Box Set">The Beatles Stereo Box Set<ul><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - A Hard Day's Night [2009 Stereo Remaster]" data-shortname="The Beatles - A Hard Day's Night [2009 Stereo Remaster]">The Beatles - A Hard Day's Night [2009 Stereo Remaster]</li><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Music\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Abbey Road [2009 Stereo Remaster]" data-shortname="The Beatles - Abbey Road [2009 Stereo Remaster]">The Beatles - Abbey Road [2009 Stereo Remaster]</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Beatles For Sale [2009 Stereo Remaster]" data-shortname="The Beatles - Beatles For Sale [2009 Stereo Remaster]">The Beatles - Beatles For Sale [2009 Stereo Remaster]</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Help! [2009 Stereo Remaster]" data-shortname="The Beatles - Help! [2009 Stereo Remaster]">The Beatles - Help! [2009 Stereo Remaster]</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Let It Be [2009 Stereo Remaster]" data-shortname="The Beatles - Let It Be [2009 Stereo Remaster]">The Beatles - Let It Be [2009 Stereo Remaster]</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Magical Mystery Tour [2009 Stereo Remaster]" data-shortname="The Beatles - Magical Mystery Tour [2009 Stereo Remaster]">The Beatles - Magical Mystery Tour [2009 Stereo Remaster]</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="33" data-full-path="Y:\Music\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Past Masters [2009 Stereo Remaster]" data-shortname="The Beatles - Past Masters [2009 Stereo Remaster]">The Beatles - Past Masters [2009 Stereo Remaster]<ul><li class="album library-item" data-contained-audio-files="18" data-full-path="Y:\Music\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Past Masters [2009 Stereo Remaster]\Disc 1" data-shortname="Disc 1">Disc 1</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Past Masters [2009 Stereo Remaster]\Disc 2" data-shortname="Disc 2">Disc 2</li></ul></li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Please Please Me [2009 Stereo Remaster]" data-shortname="The Beatles - Please Please Me [2009 Stereo Remaster]">The Beatles - Please Please Me [2009 Stereo Remaster]</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Revolver [2009 Stereo Remaster]" data-shortname="The Beatles - Revolver [2009 Stereo Remaster]">The Beatles - Revolver [2009 Stereo Remaster]</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Rubber Soul [2009 Stereo Remaster]" data-shortname="The Beatles - Rubber Soul [2009 Stereo Remaster]">The Beatles - Rubber Soul [2009 Stereo Remaster]</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Sgt. Peppers Lonely Hearts Club Band [2009 Stereo Remaster]" data-shortname="The Beatles - Sgt. Peppers Lonely Hearts Club Band [2009 Stereo Remaster]">The Beatles - Sgt. Peppers Lonely Hearts Club Band [2009 Stereo Remaster]</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="30" data-full-path="Y:\Music\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - The Beatles (White Album) [2009 Stereo Remaster]" data-shortname="The Beatles - The Beatles (White Album) [2009 Stereo Remaster]">The Beatles - The Beatles (White Album) [2009 Stereo Remaster]<ul><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Music\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - The Beatles (White Album) [2009 Stereo Remaster]\Disc 1" data-shortname="Disc 1">Disc 1</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - The Beatles (White Album) [2009 Stereo Remaster]\Disc 2" data-shortname="Disc 2">Disc 2</li></ul></li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - With The Beatles [2009 Stereo Remaster]" data-shortname="The Beatles - With The Beatles [2009 Stereo Remaster]">The Beatles - With The Beatles [2009 Stereo Remaster]</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\The Beatles - Stereo and Mono Box Sets + Extras [FLAC]\The Beatles Stereo Box Set\The Beatles - Yellow Submarine [2009 Stereo Remaster]" data-shortname="The Beatles - Yellow Submarine [2009 Stereo Remaster]">The Beatles - Yellow Submarine [2009 Stereo Remaster]</li></ul></li></ul></li><li class="collection library-item" data-contained-albums="9" data-total-albums="9" data-total-audio-files="89" data-full-path="Y:\Music\The Black Keys" data-shortname="The Black Keys">The Black Keys<ul><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\The Black Keys\[2002] the big come up" data-shortname="[2002] the big come up">[2002] the big come up</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\The Black Keys\[2003] thickfreakness" data-shortname="[2003] thickfreakness">[2003] thickfreakness</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\The Black Keys\[2004] The Moan [EP]" data-shortname="[2004] The Moan [EP]">[2004] The Moan [EP]</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\The Black Keys\[2004] rubber factory" data-shortname="[2004] rubber factory">[2004] rubber factory</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\The Black Keys\[2006] chulahoma ~ the songs of junior kimbrough [EP]" data-shortname="[2006] chulahoma ~ the songs of junior kimbrough [EP]">[2006] chulahoma ~ the songs of junior kimbrough [EP]</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\The Black Keys\[2006] magic potion" data-shortname="[2006] magic potion">[2006] magic potion</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\The Black Keys\[2006] your touch [EP]" data-shortname="[2006] your touch [EP]">[2006] your touch [EP]</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\The Black Keys\[2008] attack & release" data-shortname="[2008] attack & release">[2008] attack & release</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\The Black Keys\[2010] brothers" data-shortname="[2010] brothers">[2010] brothers</li></ul></li><li class="collection library-item" data-contained-albums="13" data-total-albums="13" data-total-audio-files="155" data-full-path="Y:\Music\The Byrds" data-shortname="The Byrds">The Byrds<ul><li class="album library-item" data-contained-audio-files="18" data-full-path="Y:\Music\The Byrds\1965 Mr Tambourine Man (20-bit remastered) (320)" data-shortname="1965 Mr Tambourine Man (20-bit remastered) (320)">1965 Mr Tambourine Man (20-bit remastered) (320)</li><li class="album library-item" data-contained-audio-files="18" data-full-path="Y:\Music\The Byrds\1965 Turn! Turn! Turn! (20-bit remastered) (320)" data-shortname="1965 Turn! Turn! Turn! (20-bit remastered) (320)">1965 Turn! Turn! Turn! (20-bit remastered) (320)</li><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Music\The Byrds\1966 5th Dimension (20-bit remastered) (320)" data-shortname="1966 5th Dimension (20-bit remastered) (320)">1966 5th Dimension (20-bit remastered) (320)</li><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Music\The Byrds\1967 Younger Than Yesterday (20-bit remastered) (320)" data-shortname="1967 Younger Than Yesterday (20-bit remastered) (320)">1967 Younger Than Yesterday (20-bit remastered) (320)</li><li class="album library-item" data-contained-audio-files="19" data-full-path="Y:\Music\The Byrds\1968 Sweetheart Of The Rodeo (20-bit remastered) (320)" data-shortname="1968 Sweetheart Of The Rodeo (20-bit remastered) (320)">1968 Sweetheart Of The Rodeo (20-bit remastered) (320)</li><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Music\The Byrds\1968 The Notorious Byrd Brothers (20-bit remastered) (320)" data-shortname="1968 The Notorious Byrd Brothers (20-bit remastered) (320)">1968 The Notorious Byrd Brothers (20-bit remastered) (320)</li><li class="album library-item" data-contained-audio-files="18" data-full-path="Y:\Music\The Byrds\1969 Ballad Of Easy Rider (20-bit remastered) (320)" data-shortname="1969 Ballad Of Easy Rider (20-bit remastered) (320)">1969 Ballad Of Easy Rider (20-bit remastered) (320)</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\The Byrds\1969 Dr Byrds And Mr Hyde (20-bit remastered) (320)" data-shortname="1969 Dr Byrds And Mr Hyde (20-bit remastered) (320)">1969 Dr Byrds And Mr Hyde (20-bit remastered) (320)</li><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\The Byrds\1970 Untitled (320)" data-shortname="1970 Untitled (320)">1970 Untitled (320)</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\The Byrds\1971 Byrdmaniax (320)" data-shortname="1971 Byrdmaniax (320)">1971 Byrdmaniax (320)</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\The Byrds\1971 Farther Along (320)" data-shortname="1971 Farther Along (320)">1971 Farther Along (320)</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\The Byrds\1973 Byrds (320)" data-shortname="1973 Byrds (320)">1973 Byrds (320)</li><li class="album library-item" data-contained-audio-files="1" data-full-path="Y:\Music\The Byrds\1987 Never Before (320)" data-shortname="1987 Never Before (320)">1987 Never Before (320)</li></ul></li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\The Chemical Brothers - No Geography (2019)" data-shortname="The Chemical Brothers - No Geography (2019)">The Chemical Brothers - No Geography (2019)</li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="10" data-full-path="Y:\Music\The Chemical Brothers - No Geography (2019) Mp3 (320 kbps) [Hunter]" data-shortname="The Chemical Brothers - No Geography (2019) Mp3 (320 kbps) [Hunter]">The Chemical Brothers - No Geography (2019) Mp3 (320 kbps) [Hunter]<ul><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\The Chemical Brothers - No Geography (2019) Mp3 (320 kbps) [Hunter]\The Chemical Brothers - No Geography (2019)" data-shortname="The Chemical Brothers - No Geography (2019)">The Chemical Brothers - No Geography (2019)</li></ul></li><li class="album library-item" data-contained-audio-files="19" data-full-path="Y:\Music\The Corrs - Best Of Greatest Hits [Bubanee]" data-shortname="The Corrs - Best Of Greatest Hits [Bubanee]">The Corrs - Best Of Greatest Hits [Bubanee]</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\The Dissonance of Roland the Thinker" data-shortname="The Dissonance of Roland the Thinker">The Dissonance of Roland the Thinker</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="35" data-full-path="Y:\Music\The Essential Sly & The Family Stone [2011]" data-shortname="The Essential Sly & The Family Stone [2011]">The Essential Sly & The Family Stone [2011]<ul><li class="album library-item" data-contained-audio-files="18" data-full-path="Y:\Music\The Essential Sly & The Family Stone [2011]\The Essential Sly & The Family Stone [Disc 1]" data-shortname="The Essential Sly & The Family Stone [Disc 1]">The Essential Sly & The Family Stone [Disc 1]</li><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Music\The Essential Sly & The Family Stone [2011]\The Essential Sly & The Family Stone [Disc 2]" data-shortname="The Essential Sly & The Family Stone [Disc 2]">The Essential Sly & The Family Stone [Disc 2]</li></ul></li><li class="collection library-item" data-contained-albums="13" data-total-albums="13" data-total-audio-files="135" data-full-path="Y:\Music\The Mighty Mighty Bosstones-discography(13 albums)" data-shortname="The Mighty Mighty Bosstones-discography(13 albums)">The Mighty Mighty Bosstones-discography(13 albums)<ul><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\The Mighty Mighty Bosstones-discography(13 albums)\The Mighty Mighty Bosstones - Here We Go Again" data-shortname="The Mighty Mighty Bosstones - Here We Go Again">The Mighty Mighty Bosstones - Here We Go Again</li><li class="album library-item" data-contained-audio-files="22" data-full-path="Y:\Music\The Mighty Mighty Bosstones-discography(13 albums)\The Mighty Mighty Bosstones - Live From The Middle East" data-shortname="The Mighty Mighty Bosstones - Live From The Middle East">The Mighty Mighty Bosstones - Live From The Middle East</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\The Mighty Mighty Bosstones-discography(13 albums)\The Mighty Mighty Bosstones - More Noise And Other Disturbances" data-shortname="The Mighty Mighty Bosstones - More Noise And Other Disturbances">The Mighty Mighty Bosstones - More Noise And Other Disturbances</li><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\The Mighty Mighty Bosstones-discography(13 albums)\The Mighty Mighty Bosstones - Pay Attention" data-shortname="The Mighty Mighty Bosstones - Pay Attention">The Mighty Mighty Bosstones - Pay Attention</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\The Mighty Mighty Bosstones-discography(13 albums)\The Mighty Mighty Bosstones - Question The Answers" data-shortname="The Mighty Mighty Bosstones - Question The Answers">The Mighty Mighty Bosstones - Question The Answers</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\The Mighty Mighty Bosstones-discography(13 albums)\The Mighty Mighty Bosstones - Simmer Down" data-shortname="The Mighty Mighty Bosstones - Simmer Down">The Mighty Mighty Bosstones - Simmer Down</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\The Mighty Mighty Bosstones-discography(13 albums)\The Mighty Mighty Bosstones - Ska-Core The Devil and More" data-shortname="The Mighty Mighty Bosstones - Ska-Core The Devil and More">The Mighty Mighty Bosstones - Ska-Core The Devil and More</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\The Mighty Mighty Bosstones-discography(13 albums)\The Mighty Mighty Bosstones - So Far, So Good" data-shortname="The Mighty Mighty Bosstones - So Far, So Good">The Mighty Mighty Bosstones - So Far, So Good</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\The Mighty Mighty Bosstones-discography(13 albums)\The Mighty Mighty Bosstones - Where'd Ya Go" data-shortname="The Mighty Mighty Bosstones - Where'd Ya Go">The Mighty Mighty Bosstones - Where'd Ya Go</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\The Mighty Mighty Bosstones-discography(13 albums)\The Mighty Mighty Bosstones - a jackknife to a swan" data-shortname="The Mighty Mighty Bosstones - a jackknife to a swan">The Mighty Mighty Bosstones - a jackknife to a swan</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\The Mighty Mighty Bosstones-discography(13 albums)\The Mighty Mighty Bosstones - devils night out" data-shortname="The Mighty Mighty Bosstones - devils night out">The Mighty Mighty Bosstones - devils night out</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\The Mighty Mighty Bosstones-discography(13 albums)\The Mighty Mighty Bosstones - dont know how to party" data-shortname="The Mighty Mighty Bosstones - dont know how to party">The Mighty Mighty Bosstones - dont know how to party</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\The Mighty Mighty Bosstones-discography(13 albums)\The Mighty Mighty Bosstones - lets face it" data-shortname="The Mighty Mighty Bosstones - lets face it">The Mighty Mighty Bosstones - lets face it</li></ul></li><li class="collection library-item" data-contained-albums="15" data-total-albums="15" data-total-audio-files="263" data-full-path="Y:\Music\The Misfits - Full Discography [15 albums-covers-lyrics] [ReSeed]" data-shortname="The Misfits - Full Discography [15 albums-covers-lyrics] [ReSeed]">The Misfits - Full Discography [15 albums-covers-lyrics] [ReSeed]<ul><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\The Misfits - Full Discography [15 albums-covers-lyrics] [ReSeed]\1. EviLive!" data-shortname="1. EviLive!">1. EviLive!</li><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Music\The Misfits - Full Discography [15 albums-covers-lyrics] [ReSeed]\10. Static Age" data-shortname="10. Static Age">10. Static Age</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\The Misfits - Full Discography [15 albums-covers-lyrics] [ReSeed]\11. Violent World - A Tribute To The Misfits" data-shortname="11. Violent World - A Tribute To The Misfits">11. Violent World - A Tribute To The Misfits</li><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Music\The Misfits - Full Discography [15 albums-covers-lyrics] [ReSeed]\12. American Psycho" data-shortname="12. American Psycho">12. American Psycho</li><li class="album library-item" data-contained-audio-files="21" data-full-path="Y:\Music\The Misfits - Full Discography [15 albums-covers-lyrics] [ReSeed]\13. Famous Monsters" data-shortname="13. Famous Monsters">13. Famous Monsters</li><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Music\The Misfits - Full Discography [15 albums-covers-lyrics] [ReSeed]\14. Cuts From The Crypt" data-shortname="14. Cuts From The Crypt">14. Cuts From The Crypt</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\The Misfits - Full Discography [15 albums-covers-lyrics] [ReSeed]\15. Project 1950" data-shortname="15. Project 1950">15. Project 1950</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\The Misfits - Full Discography [15 albums-covers-lyrics] [ReSeed]\2. Walk Among Us" data-shortname="2. Walk Among Us">2. Walk Among Us</li><li class="album library-item" data-contained-audio-files="19" data-full-path="Y:\Music\The Misfits - Full Discography [15 albums-covers-lyrics] [ReSeed]\3. Beware ( Complete Singles 77 - 82 )" data-shortname="3. Beware ( Complete Singles 77 - 82 )">3. Beware ( Complete Singles 77 - 82 )</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\The Misfits - Full Discography [15 albums-covers-lyrics] [ReSeed]\4. Earth A.D. & Wolfsblood" data-shortname="4. Earth A.D. & Wolfsblood">4. Earth A.D. & Wolfsblood</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\The Misfits - Full Discography [15 albums-covers-lyrics] [ReSeed]\5. Legacy Of Brutality" data-shortname="5. Legacy Of Brutality">5. Legacy Of Brutality</li><li class="album library-item" data-contained-audio-files="26" data-full-path="Y:\Music\The Misfits - Full Discography [15 albums-covers-lyrics] [ReSeed]\6. Box Set_Disc 1 (Collection I & II)" data-shortname="6. Box Set_Disc 1 (Collection I & II)">6. Box Set_Disc 1 (Collection I & II)</li><li class="album library-item" data-contained-audio-files="34" data-full-path="Y:\Music\The Misfits - Full Discography [15 albums-covers-lyrics] [ReSeed]\7. Box Set_Disc 2" data-shortname="7. Box Set_Disc 2">7. Box Set_Disc 2</li><li class="album library-item" data-contained-audio-files="30" data-full-path="Y:\Music\The Misfits - Full Discography [15 albums-covers-lyrics] [ReSeed]\8. Box Set_Disc 3 (Sessions)" data-shortname="8. Box Set_Disc 3 (Sessions)">8. Box Set_Disc 3 (Sessions)</li><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\The Misfits - Full Discography [15 albums-covers-lyrics] [ReSeed]\9. Box Set_Disc 4 (Static Age)" data-shortname="9. Box Set_Disc 4 (Static Age)">9. Box Set_Disc 4 (Static Age)</li></ul></li><li class="collection library-item" data-contained-albums="12" data-total-albums="12" data-total-audio-files="143" data-full-path="Y:\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope" data-shortname="The Tragically Hip - Discography [FLAC] [h33t] - Kitlope">The Tragically Hip - Discography [FLAC] [h33t] - Kitlope<ul><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip (Self Titled) 1987" data-shortname="The Tragically Hip (Self Titled) 1987">The Tragically Hip (Self Titled) 1987</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip - Day For Night 1994" data-shortname="The Tragically Hip - Day For Night 1994">The Tragically Hip - Day For Night 1994</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip - Fully Completely 1992" data-shortname="The Tragically Hip - Fully Completely 1992">The Tragically Hip - Fully Completely 1992</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip - In Between Evolution 2004" data-shortname="The Tragically Hip - In Between Evolution 2004">The Tragically Hip - In Between Evolution 2004</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip - In Violet Light 2002" data-shortname="The Tragically Hip - In Violet Light 2002">The Tragically Hip - In Violet Light 2002</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip - Live Between Us 1997" data-shortname="The Tragically Hip - Live Between Us 1997">The Tragically Hip - Live Between Us 1997</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip - Music @ Work 2000" data-shortname="The Tragically Hip - Music @ Work 2000">The Tragically Hip - Music @ Work 2000</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip - Phantom Power 1998" data-shortname="The Tragically Hip - Phantom Power 1998">The Tragically Hip - Phantom Power 1998</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip - Road Apples 1991" data-shortname="The Tragically Hip - Road Apples 1991">The Tragically Hip - Road Apples 1991</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip - Trouble at the Henhouse 1996" data-shortname="The Tragically Hip - Trouble at the Henhouse 1996">The Tragically Hip - Trouble at the Henhouse 1996</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip - Up to Here 1989" data-shortname="The Tragically Hip - Up to Here 1989">The Tragically Hip - Up to Here 1989</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\The Tragically Hip - Discography [FLAC] [h33t] - Kitlope\The Tragically Hip - World Container 2006" data-shortname="The Tragically Hip - World Container 2006">The Tragically Hip - World Container 2006</li></ul></li><li class="collection library-item" data-contained-albums="12" data-total-albums="12" data-total-audio-files="144" data-full-path="Y:\Music\TheTragically Hip" data-shortname="TheTragically Hip">TheTragically Hip<ul><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\TheTragically Hip\The Tragically Hip (Self Titled) 1987" data-shortname="The Tragically Hip (Self Titled) 1987">The Tragically Hip (Self Titled) 1987</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\TheTragically Hip\The Tragically Hip - Day For Night 1994" data-shortname="The Tragically Hip - Day For Night 1994">The Tragically Hip - Day For Night 1994</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\TheTragically Hip\The Tragically Hip - Fully Completely 1992" data-shortname="The Tragically Hip - Fully Completely 1992">The Tragically Hip - Fully Completely 1992</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\TheTragically Hip\The Tragically Hip - In Between Evolution 2004" data-shortname="The Tragically Hip - In Between Evolution 2004">The Tragically Hip - In Between Evolution 2004</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\TheTragically Hip\The Tragically Hip - In Violet Light 2002" data-shortname="The Tragically Hip - In Violet Light 2002">The Tragically Hip - In Violet Light 2002</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\TheTragically Hip\The Tragically Hip - Live Between Us 1997" data-shortname="The Tragically Hip - Live Between Us 1997">The Tragically Hip - Live Between Us 1997</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\TheTragically Hip\The Tragically Hip - Music @ Work 2000" data-shortname="The Tragically Hip - Music @ Work 2000">The Tragically Hip - Music @ Work 2000</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\TheTragically Hip\The Tragically Hip - Phantom Power 1998" data-shortname="The Tragically Hip - Phantom Power 1998">The Tragically Hip - Phantom Power 1998</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\TheTragically Hip\The Tragically Hip - Road Apples 1991" data-shortname="The Tragically Hip - Road Apples 1991">The Tragically Hip - Road Apples 1991</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\TheTragically Hip\The Tragically Hip - Trouble at the Henhouse 1996" data-shortname="The Tragically Hip - Trouble at the Henhouse 1996">The Tragically Hip - Trouble at the Henhouse 1996</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\TheTragically Hip\The Tragically Hip - Up to Here 1989" data-shortname="The Tragically Hip - Up to Here 1989">The Tragically Hip - Up to Here 1989</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\TheTragically Hip\The Tragically Hip - World Container 2006" data-shortname="The Tragically Hip - World Container 2006">The Tragically Hip - World Container 2006</li></ul></li><li class="collection library-item" data-contained-albums="12" data-total-albums="12" data-total-audio-files="126" data-full-path="Y:\Music\Three Dog Night - Collection 1968-76 12 Albums (2013) Japan SHM-CD MP3@320kbps Beolab1700" data-shortname="Three Dog Night - Collection 1968-76 12 Albums (2013) Japan SHM-CD MP3@320kbps Beolab1700">Three Dog Night - Collection 1968-76 12 Albums (2013) Japan SHM-CD MP3@320kbps Beolab1700<ul><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Three Dog Night - Collection 1968-76 12 Albums (2013) Japan SHM-CD MP3@320kbps Beolab1700\CD1" data-shortname="CD1">CD1</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Three Dog Night - Collection 1968-76 12 Albums (2013) Japan SHM-CD MP3@320kbps Beolab1700\CD10" data-shortname="CD10">CD10</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Three Dog Night - Collection 1968-76 12 Albums (2013) Japan SHM-CD MP3@320kbps Beolab1700\CD11" data-shortname="CD11">CD11</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\Three Dog Night - Collection 1968-76 12 Albums (2013) Japan SHM-CD MP3@320kbps Beolab1700\CD12" data-shortname="CD12">CD12</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Three Dog Night - Collection 1968-76 12 Albums (2013) Japan SHM-CD MP3@320kbps Beolab1700\CD2" data-shortname="CD2">CD2</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\Three Dog Night - Collection 1968-76 12 Albums (2013) Japan SHM-CD MP3@320kbps Beolab1700\CD3" data-shortname="CD3">CD3</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\Three Dog Night - Collection 1968-76 12 Albums (2013) Japan SHM-CD MP3@320kbps Beolab1700\CD4" data-shortname="CD4">CD4</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Three Dog Night - Collection 1968-76 12 Albums (2013) Japan SHM-CD MP3@320kbps Beolab1700\CD5" data-shortname="CD5">CD5</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Three Dog Night - Collection 1968-76 12 Albums (2013) Japan SHM-CD MP3@320kbps Beolab1700\CD6" data-shortname="CD6">CD6</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Three Dog Night - Collection 1968-76 12 Albums (2013) Japan SHM-CD MP3@320kbps Beolab1700\CD7" data-shortname="CD7">CD7</li><li class="album library-item" data-contained-audio-files="17" data-full-path="Y:\Music\Three Dog Night - Collection 1968-76 12 Albums (2013) Japan SHM-CD MP3@320kbps Beolab1700\CD8" data-shortname="CD8">CD8</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\Three Dog Night - Collection 1968-76 12 Albums (2013) Japan SHM-CD MP3@320kbps Beolab1700\CD9" data-shortname="CD9">CD9</li></ul></li><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\Turn The Radio Off" data-shortname="Turn The Radio Off">Turn The Radio Off</li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="14" data-full-path="Y:\Music\VA - Guardians of the Galaxy Awesome Mix, Vol. 2 (2017) [Mp3~320Kbps]" data-shortname="VA - Guardians of the Galaxy Awesome Mix, Vol. 2 (2017) [Mp3~320Kbps]">VA - Guardians of the Galaxy Awesome Mix, Vol. 2 (2017) [Mp3~320Kbps]<ul><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\VA - Guardians of the Galaxy Awesome Mix, Vol. 2 (2017) [Mp3~320Kbps]\VA - Guardians of the Galaxy Awesome Mix, Vol. 2 (2017)" data-shortname="VA - Guardians of the Galaxy Awesome Mix, Vol. 2 (2017)">VA - Guardians of the Galaxy Awesome Mix, Vol. 2 (2017)</li></ul></li><li class="album library-item" data-contained-audio-files="36" data-full-path="Y:\Music\VA_-_A_State_Of_Trance_Classics_Vol._13_(The_Full_Unmixed_Versions)-(ARDI4051)-WEB-2018-MMS" data-shortname="VA_-_A_State_Of_Trance_Classics_Vol._13_(The_Full_Unmixed_Versions)-(ARDI4051)-WEB-2018-MMS">VA_-_A_State_Of_Trance_Classics_Vol._13_(The_Full_Unmixed_Versions)-(ARDI4051)-WEB-2018-MMS</li><li class="collection library-item" data-contained-albums="8" data-total-albums="8" data-total-audio-files="85" data-full-path="Y:\Music\VNV Nation - Discography (1995 - 2011)" data-shortname="VNV Nation - Discography (1995 - 2011)">VNV Nation - Discography (1995 - 2011)<ul><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\VNV Nation - Discography (1995 - 2011)\1995 - Advance And Follow" data-shortname="1995 - Advance And Follow">1995 - Advance And Follow</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\VNV Nation - Discography (1995 - 2011)\1998 - Praise The Fallen" data-shortname="1998 - Praise The Fallen">1998 - Praise The Fallen</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\VNV Nation - Discography (1995 - 2011)\1999 - Empires" data-shortname="1999 - Empires">1999 - Empires</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\VNV Nation - Discography (1995 - 2011)\2002 - Futureperfect" data-shortname="2002 - Futureperfect">2002 - Futureperfect</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\VNV Nation - Discography (1995 - 2011)\2005 - Matter + Form" data-shortname="2005 - Matter + Form">2005 - Matter + Form</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\VNV Nation - Discography (1995 - 2011)\2007 - Judgement" data-shortname="2007 - Judgement">2007 - Judgement</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\VNV Nation - Discography (1995 - 2011)\2009 - Of Faith, Power And Glory" data-shortname="2009 - Of Faith, Power And Glory">2009 - Of Faith, Power And Glory</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\VNV Nation - Discography (1995 - 2011)\2011 - Automatic" data-shortname="2011 - Automatic">2011 - Automatic</li></ul></li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\WILL YOUNG-THE HITS ALBUM IN MP3 320K BY WINKER@1337X" data-shortname="WILL YOUNG-THE HITS ALBUM IN MP3 320K BY WINKER@1337X">WILL YOUNG-THE HITS ALBUM IN MP3 320K BY WINKER@1337X</li><li class="collection library-item" data-contained-albums="14" data-total-albums="14" data-total-audio-files="167" data-full-path="Y:\Music\Weird Al Yankovic" data-shortname="Weird Al Yankovic">Weird Al Yankovic<ul><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Weird Al Yankovic\Alapalooza" data-shortname="Alapalooza">Alapalooza</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Weird Al Yankovic\Alpocalypse" data-shortname="Alpocalypse">Alpocalypse</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Weird Al Yankovic\Bad Hair Day" data-shortname="Bad Hair Day">Bad Hair Day</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Weird Al Yankovic\Dare To Be Stupid" data-shortname="Dare To Be Stupid">Dare To Be Stupid</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Weird Al Yankovic\Even Worse" data-shortname="Even Worse">Even Worse</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Weird Al Yankovic\In 3-D" data-shortname="In 3-D">In 3-D</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\Weird Al Yankovic\Off The Deep End" data-shortname="Off The Deep End">Off The Deep End</li><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\Weird Al Yankovic\Peter & the Wolf" data-shortname="Peter & the Wolf">Peter & the Wolf</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\Weird Al Yankovic\Polka Party!" data-shortname="Polka Party!">Polka Party!</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Weird Al Yankovic\Poodle Hat" data-shortname="Poodle Hat">Poodle Hat</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Weird Al Yankovic\Running With Scissors" data-shortname="Running With Scissors">Running With Scissors</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Weird Al Yankovic\Straight Outta Lynwood" data-shortname="Straight Outta Lynwood">Straight Outta Lynwood</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\Weird Al Yankovic\UHF" data-shortname="UHF">UHF</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\Weird Al Yankovic\Weird Al Yankovic" data-shortname="Weird Al Yankovic">Weird Al Yankovic</li></ul></li><li class="library library-item" data-contained-collections="1" data-contained-albums="0" data-total-albums="59" data-total-audio-files="543" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps" data-shortname="YES - Discography 1969-2009 Mp3 320 kbps">YES - Discography 1969-2009 Mp3 320 kbps<ul><li class="library library-item" data-contained-collections="1" data-contained-albums="16" data-total-albums="18" data-total-audio-files="195" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\1 Studio" data-shortname="1 Studio">1 Studio<ul><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\1 Studio\1969 Yes (Remastered and Expanded) @320" data-shortname="1969 Yes (Remastered and Expanded) @320">1969 Yes (Remastered and Expanded) @320</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\1 Studio\1970 Time And A Word (Remastered and Expanded) @320" data-shortname="1970 Time And A Word (Remastered and Expanded) @320">1970 Time And A Word (Remastered and Expanded) @320</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\1 Studio\1971 Fragile (Remastered and Expanded) @320" data-shortname="1971 Fragile (Remastered and Expanded) @320">1971 Fragile (Remastered and Expanded) @320</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\1 Studio\1971 The Yes Album (Remastered and Expanded) @320" data-shortname="1971 The Yes Album (Remastered and Expanded) @320">1971 The Yes Album (Remastered and Expanded) @320</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\1 Studio\1972 Close To The Edge (Remastered and Expanded) @320" data-shortname="1972 Close To The Edge (Remastered and Expanded) @320">1972 Close To The Edge (Remastered and Expanded) @320</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="6" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\1 Studio\1973 Tales From Topographic Oceans (Remastered and Expanded) (2 CD) @320" data-shortname="1973 Tales From Topographic Oceans (Remastered and Expanded) (2 CD) @320">1973 Tales From Topographic Oceans (Remastered and Expanded) (2 CD) @320<ul><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\1 Studio\1973 Tales From Topographic Oceans (Remastered and Expanded) (2 CD) @320\CD1" data-shortname="CD1">CD1</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\1 Studio\1973 Tales From Topographic Oceans (Remastered and Expanded) (2 CD) @320\CD2" data-shortname="CD2">CD2</li></ul></li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\1 Studio\1974 Relayer (Remastered and Expanded) @320" data-shortname="1974 Relayer (Remastered and Expanded) @320">1974 Relayer (Remastered and Expanded) @320</li><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\1 Studio\1977 Going For The One (Remastered and Expanded) @320" data-shortname="1977 Going For The One (Remastered and Expanded) @320">1977 Going For The One (Remastered and Expanded) @320</li><li class="album library-item" data-contained-audio-files="18" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\1 Studio\1978 Tormato (Remastered and Expanded) @320" data-shortname="1978 Tormato (Remastered and Expanded) @320">1978 Tormato (Remastered and Expanded) @320</li><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\1 Studio\1980 Drama (Remastered and Expanded) @320" data-shortname="1980 Drama (Remastered and Expanded) @320">1980 Drama (Remastered and Expanded) @320</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\1 Studio\1983 90125 (Remastered and Expanded) @320" data-shortname="1983 90125 (Remastered and Expanded) @320">1983 90125 (Remastered and Expanded) @320</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\1 Studio\1987 Big Generator (Remastered and Expanded) @320" data-shortname="1987 Big Generator (Remastered and Expanded) @320">1987 Big Generator (Remastered and Expanded) @320</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\1 Studio\1991 Union @320" data-shortname="1991 Union @320">1991 Union @320</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\1 Studio\1994 Talk @320" data-shortname="1994 Talk @320">1994 Talk @320</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\1 Studio\1997 Open Your Eyes @320" data-shortname="1997 Open Your Eyes @320">1997 Open Your Eyes @320</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\1 Studio\1999 The Ladder @320" data-shortname="1999 The Ladder @320">1999 The Ladder @320</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\1 Studio\2001 Magnification @320" data-shortname="2001 Magnification @320">2001 Magnification @320</li></ul></li><li class="library library-item" data-contained-collections="6" data-contained-albums="1" data-total-albums="13" data-total-audio-files="83" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\2 Live Albums" data-shortname="2 Live Albums">2 Live Albums<ul><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="13" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\2 Live Albums\1973 YesSongs (2 CD) @320" data-shortname="1973 YesSongs (2 CD) @320">1973 YesSongs (2 CD) @320<ul><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\2 Live Albums\1973 YesSongs (2 CD) @320\CD1" data-shortname="CD1">CD1</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\2 Live Albums\1973 YesSongs (2 CD) @320\CD2" data-shortname="CD2">CD2</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="8" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\2 Live Albums\1980 YesShows (2 CD) @320" data-shortname="1980 YesShows (2 CD) @320">1980 YesShows (2 CD) @320<ul><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\2 Live Albums\1980 YesShows (2 CD) @320\CD1" data-shortname="CD1">CD1</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\2 Live Albums\1980 YesShows (2 CD) @320\CD2" data-shortname="CD2">CD2</li></ul></li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\2 Live Albums\1985 9012 Live The Solos @320" data-shortname="1985 9012 Live The Solos @320">1985 9012 Live The Solos @320</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="9" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\2 Live Albums\1996 Keys To Ascension (2 CD) @320" data-shortname="1996 Keys To Ascension (2 CD) @320">1996 Keys To Ascension (2 CD) @320<ul><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\2 Live Albums\1996 Keys To Ascension (2 CD) @320\CD1" data-shortname="CD1">CD1</li><li class="album library-item" data-contained-audio-files="4" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\2 Live Albums\1996 Keys To Ascension (2 CD) @320\CD2" data-shortname="CD2">CD2</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="11" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\2 Live Albums\1997 Keys To Ascension 2 (2 CD) @320" data-shortname="1997 Keys To Ascension 2 (2 CD) @320">1997 Keys To Ascension 2 (2 CD) @320<ul><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\2 Live Albums\1997 Keys To Ascension 2 (2 CD) @320\CD1" data-shortname="CD1">CD1</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\2 Live Albums\1997 Keys To Ascension 2 (2 CD) @320\CD2" data-shortname="CD2">CD2</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="18" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\2 Live Albums\1998 Beyond And Before (The BBC Recordings 1969-1970) (2 CD) @320" data-shortname="1998 Beyond And Before (The BBC Recordings 1969-1970) (2 CD) @320">1998 Beyond And Before (The BBC Recordings 1969-1970) (2 CD) @320<ul><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\2 Live Albums\1998 Beyond And Before (The BBC Recordings 1969-1970) (2 CD) @320\CD1" data-shortname="CD1">CD1</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\2 Live Albums\1998 Beyond And Before (The BBC Recordings 1969-1970) (2 CD) @320\CD2" data-shortname="CD2">CD2</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="15" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\2 Live Albums\2000 House Of Yes - Live From House Of Blues (2 CD) @320" data-shortname="2000 House Of Yes - Live From House Of Blues (2 CD) @320">2000 House Of Yes - Live From House Of Blues (2 CD) @320<ul><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\2 Live Albums\2000 House Of Yes - Live From House Of Blues (2 CD) @320\CD1" data-shortname="CD1">CD1</li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\2 Live Albums\2000 House Of Yes - Live From House Of Blues (2 CD) @320\CD2" data-shortname="CD2">CD2</li></ul></li></ul></li><li class="library library-item" data-contained-collections="4" data-contained-albums="4" data-total-albums="15" data-total-audio-files="150" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\3 Compilation albums" data-shortname="3 Compilation albums">3 Compilation albums<ul><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\3 Compilation albums\1974 Yesterdays @320" data-shortname="1974 Yesterdays @320">1974 Yesterdays @320</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\3 Compilation albums\1981 Classic Yes @320" data-shortname="1981 Classic Yes @320">1981 Classic Yes @320</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\3 Compilation albums\1987 The Best Of Yes (1970-1987) @320" data-shortname="1987 The Best Of Yes (1970-1987) @320">1987 The Best Of Yes (1970-1987) @320</li><li class="collection library-item" data-contained-albums="4" data-total-albums="4" data-total-audio-files="46" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\3 Compilation albums\1991 YesYears (BoxSet) (4 CD) @320" data-shortname="1991 YesYears (BoxSet) (4 CD) @320">1991 YesYears (BoxSet) (4 CD) @320<ul><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\3 Compilation albums\1991 YesYears (BoxSet) (4 CD) @320\CD1" data-shortname="CD1">CD1</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\3 Compilation albums\1991 YesYears (BoxSet) (4 CD) @320\CD2" data-shortname="CD2">CD2</li><li class="album library-item" data-contained-audio-files="16" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\3 Compilation albums\1991 YesYears (BoxSet) (4 CD) @320\CD3" data-shortname="CD3">CD3</li><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\3 Compilation albums\1991 YesYears (BoxSet) (4 CD) @320\CD4" data-shortname="CD4">CD4</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="19" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\3 Compilation albums\1998 Friends & Relatives Vol 1 (2 CD) @320" data-shortname="1998 Friends & Relatives Vol 1 (2 CD) @320">1998 Friends & Relatives Vol 1 (2 CD) @320<ul><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\3 Compilation albums\1998 Friends & Relatives Vol 1 (2 CD) @320\CD1" data-shortname="CD1">CD1</li><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\3 Compilation albums\1998 Friends & Relatives Vol 1 (2 CD) @320\CD2" data-shortname="CD2">CD2</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="20" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\3 Compilation albums\1998 Friends & Relatives Vol 2 (2 CD) @320" data-shortname="1998 Friends & Relatives Vol 2 (2 CD) @320">1998 Friends & Relatives Vol 2 (2 CD) @320<ul><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\3 Compilation albums\1998 Friends & Relatives Vol 2 (2 CD) @320\CD1" data-shortname="CD1">CD1</li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\3 Compilation albums\1998 Friends & Relatives Vol 2 (2 CD) @320\CD2" data-shortname="CD2">CD2</li></ul></li><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\3 Compilation albums\2001 Keystudio @320" data-shortname="2001 Keystudio @320">2001 Keystudio @320</li><li class="collection library-item" data-contained-albums="3" data-total-albums="3" data-total-audio-files="31" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\3 Compilation albums\2004 The Ultimate Yes (35th Anniversary) (3 CD) @320" data-shortname="2004 The Ultimate Yes (35th Anniversary) (3 CD) @320">2004 The Ultimate Yes (35th Anniversary) (3 CD) @320<ul><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\3 Compilation albums\2004 The Ultimate Yes (35th Anniversary) (3 CD) @320\CD1" data-shortname="CD1">CD1</li><li class="album library-item" data-contained-audio-files="15" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\3 Compilation albums\2004 The Ultimate Yes (35th Anniversary) (3 CD) @320\CD2" data-shortname="CD2">CD2</li><li class="album library-item" data-contained-audio-files="5" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\3 Compilation albums\2004 The Ultimate Yes (35th Anniversary) (3 CD) @320\CD3" data-shortname="CD3">CD3</li></ul></li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="11" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\4 Remix" data-shortname="4 Remix">4 Remix<ul><li class="album library-item" data-contained-audio-files="11" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\4 Remix\2003 Remixes @320" data-shortname="2003 Remixes @320">2003 Remixes @320</li></ul></li><li class="library library-item" data-contained-collections="3" data-contained-albums="6" data-total-albums="12" data-total-audio-files="104" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\5 Other albums & Live" data-shortname="5 Other albums & Live">5 Other albums & Live<ul><li class="album library-item" data-contained-audio-files="7" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\5 Other albums & Live\1971 Perpetual Change (Bootleg, Hiwatt) @320" data-shortname="1971 Perpetual Change (Bootleg, Hiwatt) @320">1971 Perpetual Change (Bootleg, Hiwatt) @320</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\5 Other albums & Live\1985 Live The Solos ( Bootleg) @320" data-shortname="1985 Live The Solos ( Bootleg) @320">1985 Live The Solos ( Bootleg) @320</li><li class="album library-item" data-contained-audio-files="13" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\5 Other albums & Live\1991 Union Tour (Live) @320" data-shortname="1991 Union Tour (Live) @320">1991 Union Tour (Live) @320</li><li class="album library-item" data-contained-audio-files="14" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\5 Other albums & Live\1994 The Yes Solo Family Album (YES Members) @320" data-shortname="1994 The Yes Solo Family Album (YES Members) @320">1994 The Yes Solo Family Album (YES Members) @320</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="17" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\5 Other albums & Live\2002 Konocti (Field Amphitheatre Kelseyville CA USA) (2 CD) @320" data-shortname="2002 Konocti (Field Amphitheatre Kelseyville CA USA) (2 CD) @320">2002 Konocti (Field Amphitheatre Kelseyville CA USA) (2 CD) @320<ul><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\5 Other albums & Live\2002 Konocti (Field Amphitheatre Kelseyville CA USA) (2 CD) @320\CD1" data-shortname="CD1">CD1</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\5 Other albums & Live\2002 Konocti (Field Amphitheatre Kelseyville CA USA) (2 CD) @320\CD2" data-shortname="CD2">CD2</li></ul></li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\5 Other albums & Live\2002 Symphonic Live @320" data-shortname="2002 Symphonic Live @320">2002 Symphonic Live @320</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\5 Other albums & Live\2002 The Encore Collection Extended Versions (Live) @320" data-shortname="2002 The Encore Collection Extended Versions (Live) @320">2002 The Encore Collection Extended Versions (Live) @320</li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="17" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\5 Other albums & Live\2007 Live At Montreux 2003 (2 CD) @320" data-shortname="2007 Live At Montreux 2003 (2 CD) @320">2007 Live At Montreux 2003 (2 CD) @320<ul><li class="album library-item" data-contained-audio-files="9" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\5 Other albums & Live\2007 Live At Montreux 2003 (2 CD) @320\CD1" data-shortname="CD1">CD1</li><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\5 Other albums & Live\2007 Live At Montreux 2003 (2 CD) @320\CD2" data-shortname="CD2">CD2</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="14" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\5 Other albums & Live\2009 Live At Hammersmith Apollo (Nov17th) (2 CD) @320" data-shortname="2009 Live At Hammersmith Apollo (Nov17th) (2 CD) @320">2009 Live At Hammersmith Apollo (Nov17th) (2 CD) @320<ul><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\5 Other albums & Live\2009 Live At Hammersmith Apollo (Nov17th) (2 CD) @320\CD1" data-shortname="CD1">CD1</li><li class="album library-item" data-contained-audio-files="6" data-full-path="Y:\Music\YES - Discography 1969-2009 Mp3 320 kbps\5 Other albums & Live\2009 Live At Hammersmith Apollo (Nov17th) (2 CD) @320\CD2" data-shortname="CD2">CD2</li></ul></li></ul></li></ul></li><li class="album library-item" data-contained-audio-files="10" data-full-path="Y:\Music\younger brother - 2000 - a flock of bleeps" data-shortname="younger brother - 2000 - a flock of bleeps">younger brother - 2000 - a flock of bleeps</li></ul></li><li class="library library-item" data-contained-collections="4" data-contained-albums="0" data-total-albums="13" data-total-audio-files="171" data-full-path="Y:\TV Shows" data-shortname="TV Shows">TV Shows<ul><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="75" data-full-path="Y:\TV Shows\Kyle Dixon & Michael Stein - Stranger Things, Vol. 1 & Vol. 2 (A Netflix Original Series Soundtrack)" data-shortname="Kyle Dixon & Michael Stein - Stranger Things, Vol. 1 & Vol. 2 (A Netflix Original Series Soundtrack)">Kyle Dixon & Michael Stein - Stranger Things, Vol. 1 & Vol. 2 (A Netflix Original Series Soundtrack)<ul><li class="album library-item" data-contained-audio-files="36" data-full-path="Y:\TV Shows\Kyle Dixon & Michael Stein - Stranger Things, Vol. 1 & Vol. 2 (A Netflix Original Series Soundtrack)\(2016) Stranger Things, Vol. 1" data-shortname="(2016) Stranger Things, Vol. 1">(2016) Stranger Things, Vol. 1</li><li class="album library-item" data-contained-audio-files="39" data-full-path="Y:\TV Shows\Kyle Dixon & Michael Stein - Stranger Things, Vol. 1 & Vol. 2 (A Netflix Original Series Soundtrack)\(2016) Stranger Things, Vol. 2" data-shortname="(2016) Stranger Things, Vol. 2">(2016) Stranger Things, Vol. 2</li></ul></li><li class="collection library-item" data-contained-albums="2" data-total-albums="2" data-total-audio-files="34" data-full-path="Y:\TV Shows\Metalocalypse" data-shortname="Metalocalypse">Metalocalypse<ul><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\TV Shows\Metalocalypse\Dethklok (USA) - Dethalbum II (2009) [FLAC] [Melodic Death Metal]" data-shortname="Dethklok (USA) - Dethalbum II (2009) [FLAC] [Melodic Death Metal]">Dethklok (USA) - Dethalbum II (2009) [FLAC] [Melodic Death Metal]</li><li class="album library-item" data-contained-audio-files="22" data-full-path="Y:\TV Shows\Metalocalypse\Dethklok - The Dethalbum (Deluxe Edition)" data-shortname="Dethklok - The Dethalbum (Deluxe Edition)">Dethklok - The Dethalbum (Deluxe Edition)</li></ul></li><li class="collection library-item" data-contained-albums="4" data-total-albums="4" data-total-audio-files="10" data-full-path="Y:\TV Shows\QI Series 1-10 Season A-J mp4 -- XL UNCUT HDTV 720p if available" data-shortname="QI Series 1-10 Season A-J mp4 -- XL UNCUT HDTV 720p if available">QI Series 1-10 Season A-J mp4 -- XL UNCUT HDTV 720p if available<ul><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\TV Shows\QI Series 1-10 Season A-J mp4 -- XL UNCUT HDTV 720p if available\QI Season 2" data-shortname="QI Season 2">QI Season 2</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\TV Shows\QI Series 1-10 Season A-J mp4 -- XL UNCUT HDTV 720p if available\QI Season 3" data-shortname="QI Season 3">QI Season 3</li><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\TV Shows\QI Series 1-10 Season A-J mp4 -- XL UNCUT HDTV 720p if available\QI s02 B 2004" data-shortname="QI s02 B 2004">QI s02 B 2004</li><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\TV Shows\QI Series 1-10 Season A-J mp4 -- XL UNCUT HDTV 720p if available\QI s03 C 2005" data-shortname="QI s03 C 2005">QI s03 C 2005</li></ul></li><li class="library library-item" data-contained-collections="2" data-contained-albums="0" data-total-albums="2" data-total-audio-files="5" data-full-path="Y:\TV Shows\Steven Universe ENG-PTBR-PTPT" data-shortname="Steven Universe ENG-PTBR-PTPT">Steven Universe ENG-PTBR-PTPT<ul><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="2" data-full-path="Y:\TV Shows\Steven Universe ENG-PTBR-PTPT\S02" data-shortname="S02">S02<ul><li class="album library-item" data-contained-audio-files="2" data-full-path="Y:\TV Shows\Steven Universe ENG-PTBR-PTPT\S02\Encerramentos em Português" data-shortname="Encerramentos em Português">Encerramentos em Português</li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="3" data-full-path="Y:\TV Shows\Steven Universe ENG-PTBR-PTPT\S03" data-shortname="S03">S03<ul><li class="album library-item" data-contained-audio-files="3" data-full-path="Y:\TV Shows\Steven Universe ENG-PTBR-PTPT\S03\Encerramentos em Português" data-shortname="Encerramentos em Português">Encerramentos em Português</li></ul></li></ul></li><li class="path library-item" data-total-albums="1" data-total-audio-files="12" data-full-path="Y:\TV Shows\The Adventures of Pete and Pete [COMPLETE SERIES]" data-shortname="The Adventures of Pete and Pete [COMPLETE SERIES]">The Adventures of Pete and Pete [COMPLETE SERIES]<ul><li class="path library-item" data-total-albums="1" data-total-audio-files="12" data-full-path="Y:\TV Shows\The Adventures of Pete and Pete [COMPLETE SERIES]\Extras" data-shortname="Extras">Extras<ul><li class="library library-item" data-contained-collections="1" data-contained-albums="0" data-total-albums="1" data-total-audio-files="12" data-full-path="Y:\TV Shows\The Adventures of Pete and Pete [COMPLETE SERIES]\Extras\Music" data-shortname="Music">Music<ul><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="12" data-full-path="Y:\TV Shows\The Adventures of Pete and Pete [COMPLETE SERIES]\Extras\Music\Polaris" data-shortname="Polaris">Polaris<ul><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\TV Shows\The Adventures of Pete and Pete [COMPLETE SERIES]\Extras\Music\Polaris\Music From the Adventures of Pete & Pete" data-shortname="Music From the Adventures of Pete & Pete">Music From the Adventures of Pete & Pete</li></ul></li></ul></li></ul></li></ul></li><li class="path library-item" data-total-albums="1" data-total-audio-files="14" data-full-path="Y:\TV Shows\The Venture Bros. (Seasons 1-6 +Commentary) [480p] [DVD] [1080p] [BD] [HEVC] [x265] [Batch] [pseudo]" data-shortname="The Venture Bros. (Seasons 1-6 +Commentary) [480p] [DVD] [1080p] [BD] [HEVC] [x265] [Batch] [pseudo]">The Venture Bros. (Seasons 1-6 +Commentary) [480p] [DVD] [1080p] [BD] [HEVC] [x265] [Batch] [pseudo]<ul><li class="library library-item" data-contained-collections="1" data-contained-albums="0" data-total-albums="1" data-total-audio-files="14" data-full-path="Y:\TV Shows\The Venture Bros. (Seasons 1-6 +Commentary) [480p] [DVD] [1080p] [BD] [HEVC] [x265] [Batch] [pseudo]\Extras" data-shortname="Extras">Extras<ul><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="8" data-full-path="Y:\TV Shows\The Venture Bros. (Seasons 1-6 +Commentary) [480p] [DVD] [1080p] [BD] [HEVC] [x265] [Batch] [pseudo]\Extras\Audio" data-shortname="Audio">Audio<ul><li class="album library-item" data-contained-audio-files="8" data-full-path="Y:\TV Shows\The Venture Bros. (Seasons 1-6 +Commentary) [480p] [DVD] [1080p] [BD] [HEVC] [x265] [Batch] [pseudo]\Extras\Audio\Christmas Singles" data-shortname="Christmas Singles">Christmas Singles</li></ul></li></ul></li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="21" data-full-path="Y:\TV Shows\[Furi] Avatar - The Last Airbender [720p] (Full 3 Seasons + Extras)" data-shortname="[Furi] Avatar - The Last Airbender [720p] (Full 3 Seasons + Extras)">[Furi] Avatar - The Last Airbender [720p] (Full 3 Seasons + Extras)<ul><li class="album library-item" data-contained-audio-files="21" data-full-path="Y:\TV Shows\[Furi] Avatar - The Last Airbender [720p] (Full 3 Seasons + Extras)\Avatar The Last Airbender OST [Unofficial]" data-shortname="Avatar The Last Airbender OST [Unofficial]">Avatar The Last Airbender OST [Unofficial]</li></ul></li></ul></li><li class="collection library-item" data-contained-albums="1" data-total-albums="1" data-total-audio-files="12" data-full-path="Y:\newfoldersfasdfsd" data-shortname="newfoldersfasdfsd">newfoldersfasdfsd<ul><li class="album library-item" data-contained-audio-files="12" data-full-path="Y:\newfoldersfasdfsd\Steve Miller Band - Fly Like An Eagle" data-shortname="Steve Miller Band - Fly Like An Eagle">Steve Miller Band - Fly Like An Eagle</li></ul></li></ul></li></ul><span id="command" class="hidden" data-command="Y: --html --tolerance 51 "></span></div></div></body><script>window.onload = () => {
/*-------------------------------------------------------------------------
Add DOM elements and styling, initialize state, and set handlers.
-------------------------------------------------------------------------*/
document.body.insertAdjacentHTML("afterbegin", newHtml);
document.getElementById("explorer-container").
insertAdjacentHTML("beforeend", `<footer id="footer"></footer>`);
const elements = {
command: document.getElementById("command"),
searchText: document.getElementById("search-text"),
libraryExplorer: document.getElementById('library-explorer'),
navbar: document.getElementsByClassName("navbar")[0],
findNext: document.getElementById("find-next"),
findPrevious: document.getElementById("find-previous"),
commandSubtitleContainer: document.getElementById("command-subtitle-container"),
main: document.getElementsByClassName("main")[0],
explorerContainer: document.getElementById("explorer-container"),
insights: document.getElementById("insights"),
help: document.getElementById("help"),
about: document.getElementById("about"),
disabler: document.getElementById("disabler"),
fullPathDisplay: document.getElementById("full-path-display"),
searchResults: document.getElementById("search-results"),
libraryItems: document.querySelectorAll(".library-item"),
libraryItemModal: document.getElementById("library-item-modal"),
libraryItemModalItems: document.getElementById("library-item-modal")
.getElementsByClassName('modal-menu-item'),
footer: document.getElementById("footer"),
}
const rootInfo = elements.libraryExplorer.children[0].dataset;
organizeAlbums(elements.libraryExplorer.children[0].children[0]);
elements.libraryExplorer.getElementsByTagName('UL')[0].classList.add("fade");
const menuIcon = createHamburgerMenu();
elements.libraryItems.forEach((elem) => {
insertHoverDetailsBeforeUL(elem, menuIcon, rootInfo);
styleTheListElement(elem, rootInfo);
});
document.querySelectorAll(".largest-folders").forEach((elem) => {
styleTheListElement(elem, rootInfo);
const details = hoverDetails(elem, menuIcon, rootInfo)
newBr = document.createElement("br");
elem.appendChild(newBr)
elem.appendChild(details);
});
elements.libraryExplorer.querySelectorAll(".library-item-menu-button").forEach((node) =>
node.onclick = (e) => {
updateState({
type: "CLICK_ITEM_BUTTON",
node: e.target,
event: e
})
}
)
elements.commandSubtitleContainer.appendChild(commandline(elements));
elements.help.appendChild(closeSidebarButton());
elements.help.appendChild(helpContent());
elements.about.appendChild(closeSidebarButton());
elements.about.appendChild(aboutContent());
elements.footer.appendChild(footerContent());
elements.insights.insertBefore(closeSidebarButton(), elements.insights.children[0]);
/*-------------------------------------------------------------------------
Initialize state.
-------------------------------------------------------------------------*/
const state = {
search: {
index: {},
query: "",
results: [],
resultsText: "",
i: 0,
enableNext: false,
enablePrevious: false
},
explorer: {
hoverPath: "",
openFolders: new Set,
hoverSelectedNode: null,
openMenu: null,
menuPos: { top: 0, right: 0 }
},
sidebar: {
expanded: false,
content: null
},
}
setTimeout(() => indexForSearch(elements.libraryExplorer, state.search.index), 0);
/*-------------------------------------------------------------------------
Initialize listeners.
-------------------------------------------------------------------------*/
elements.help.querySelectorAll("h2").forEach((node) => {
node.onclick = (e) => {
updateState({
type: "CLICK_HELP_SECTION_TITLE",
node: e.target
})
}
})
elements.libraryExplorer.onclick = (e) => {
updateState({
type: "FOLDER_CLICK",
node: e.target
});
}
elements.searchText.onkeyup = (e) => {
updateState({
type: "NEW_QUERY",
text: e.target.value
})
}
document.onmouseover = (e) => {
if (state.explorer.openMenu) return;
updateState({
type: "CHANGE_HOVER_SELECTED_NODE",
node: e.target
})
};
elements.findNext.onclick = (e) => {
updateState({ type: "FIND_NEXT" })
};
elements.findPrevious.onclick = (e) => {
updateState({ type: "FIND_PREVIOUS" })
}
elements.insights.onclick = (e) => {
const _node = doesSomeParentBelong(e.target, "largest-folders");
if (!_node) return;
updateUi({
type: "JUMP_TO_NODE",
node: findFolder(_node.dataset.fullPath)
})
}
elements.disabler.onclick = (e) => {
updateState({ type: "CLOSE_ITEM_MENU_CLICK" })
}
elements.navbar.onclick = (e) => {
updateState({ type: "CLOSE_ITEM_MENU_CLICK" })
}
document.getElementById(
"insights-button").onclick = (e) => {
updateState({
type: "CHANGE_SIDEBAR_CONTENT",
div: "sidebar",
node: elements.insights
})
}
document.getElementById(
"help-button").onclick = (e) => {
updateState({
type: "CHANGE_SIDEBAR_CONTENT",
div: "sidebar",
node: elements.help
})
}
document.getElementById(
"about-button").onclick = (e) => {
updateState({
type: "CHANGE_SIDEBAR_CONTENT",
div: "sidebar",
node: elements.about
})
}
document.querySelectorAll(".close-sidebar-button").forEach((elem) => {
elem.onclick = (e) => {
// This state update is "changing to the current content".
// Changing to the current content means close the sidebar.
updateState({
type: "CHANGE_SIDEBAR_CONTENT",
div: "sidebar",
node: state.sidebar.content
})
}
})
/*-------------------------------------------------------------------------
Initialize functions and constants that require context.
-------------------------------------------------------------------------*/
const itemMenu = itemMenuMaker(
elements.libraryItemModal,
elements.libraryItemModal.getElementsByClassName("modal-menu-item"))
// provide these functions with context... needs more thought...
const findAll = searchIndex(state)
const findFolder = makeFindFolder(elements)
/*-------------------------------------------------------------------------
Handle changes to state.
-------------------------------------------------------------------------*/
const updateState = (action) => {
switch (action.type) {
case "NEW_QUERY":
if (action.text === state.search.query) break;
state.search.query = action.text;
updateState({ type: "NEW_SEARCH" });
break;
case "NEW_SEARCH":
state.search.previousResult = (
state.search.results ?
state.search.results[state.search.i] : null);
state.search.results = findAll(state.search.query);
state.search.resultsText = getSearchResultText(
state.search.results);
state.search.i = 0;
updateUi({ type: "SCROLL_SEARCH" });
updateState({ type: "UPDATE_BUTTON_STATES" });
updateState({
type: "CHANGE_HOVER_SELECTED_NODE",
node: state.search.results[state.search.i]
})
break;
case "FIND_NEXT":
if (state.search.i < state.search.results.length - 1) {
state.search.previousResult = (
state.search.results ?
state.search.results[state.search.i] : null);
state.search.i++;
state.search.resultsText = getSearchResultText(
state.search.results);
updateUi({ type: "SCROLL_SEARCH" });
}
updateState({ type: "UPDATE_BUTTON_STATES" });
updateState({
type: "CHANGE_HOVER_SELECTED_NODE",
node: state.search.results[state.search.i]
})
break;
case "FIND_PREVIOUS":
if (state.search.i > 0) {
state.search.previousResult = (
state.search.results ?
state.search.results[state.search.i] : null);
state.search.i--;
state.search.resultsText = getSearchResultText(
state.search.results);
updateUi({ type: "SCROLL_SEARCH" });
}
updateState({ type: "UPDATE_BUTTON_STATES" });
updateState({
type: "CHANGE_HOVER_SELECTED_NODE",
node: state.search.results[state.search.i]
})
break;
case "UPDATE_BUTTON_STATES":
updateButtonState(state);
if (state.search.enableNext) {
updateUi({
type: "ENABLE_BUTTON",
node: elements.findNext
})
}
else {
updateUi({
type: "DISABLE_BUTTON",
node: elements.findNext
})
}
if (state.search.enablePrevious) {
updateUi({
type: "ENABLE_BUTTON",
node: elements.findPrevious
})
}
else {
updateUi({
type: "DISABLE_BUTTON",
node: elements.findPrevious
})
}
break;
case "FOLDER_CLICK":
let node = action.node;
if (node.classList.contains("hover-details")) {
node = node.parentElement; // click was on hover-details
}
updateUi({
type: "FOLDER_CLICK",
node: node
})
break;
case "TOGGLE_FOLDER":
action.open ?
state.explorer.openFolders.add(action.node) :
state.explorer.openFolders.delete(action.node)
break;
case "CLICK_ITEM_BUTTON":
state.explorer.menuPos = getMenuButtonClickPos(
state.explorer.hoverSelectedNode, action.event);
updateUi({
type: "OPEN_ITEM_MENU",
node: state.explorer.hoverSelectedNode
});
state.explorer.openMenu = state.explorer.hoverSelectedNode;
break;
case "CLOSE_ITEM_MENU_CLICK":
updateUi({ type: "CLOSE_ITEM_MENU" });
state.explorer.openMenu = null;
break;
case "CHANGE_HOVER_SELECTED_NODE":
const _node = doesSomeParentBelong(action.node, "library-item");
if (!_node) {
updateUi({
type: "HIDE_HOVER_DETAILS",
node: state.explorer.hoverSelectedNode
});
state.explorer.hoverSelectedNode = null;
state.explorer.hoverPath = "";
updateUi({ type: "CHANGE_HOVER_PATH" });
break;
}
else {
updateUi({
type: "HIDE_HOVER_DETAILS",
node: state.explorer.hoverSelectedNode
});
state.explorer.hoverSelectedNode = _node;
state.explorer.hoverPath = getFullPath(_node);
updateUi({ type: "CHANGE_HOVER_PATH" });
updateUi({
type: "SHOW_HOVER_DETAILS",
node: _node
});
break;
}
case "CHANGE_SIDEBAR_CONTENT":
if (action.node == state.sidebar.content) {
if (state[action.div].expanded) {
updateUi({
type: "CLOSE_DIV",
node: action.node
});
state[action.div].expanded = false;
state.sidebar.content = action.node;
break;
}
else {
updateUi({
type: "EXPAND_DIV",
node: action.node
});
state[action.div].expanded = true;
state.sidebar.content = action.node;
break;
}
}
else if (state[action.div].expanded) {
updateUi({
type: "CHANGE_CONTENT",
old: state.sidebar.content,
node: action.node
});
state.sidebar.content = action.node;
state[action.div].expanded = true;
break;
}
else {
updateUi({
type: "EXPAND_DIV",
node: action.node
});
state[action.div].expanded = true;
state.sidebar.content = action.node;
break;
}
case "CLICK_HELP_SECTION_TITLE":
const helpSection = action.node.parentElement;
if (helpSection == state.sidebar.openHelpSection) {
updateUi({
type: "CLOSE_HELP_TEXT",
node: helpSection
})
state.sidebar.openHelpSection = null;
break;
}
updateUi({
type: "CLOSE_HELP_TEXT",
node: state.sidebar.openHelpSection
})
updateUi({
type: "OPEN_HELP_TEXT",
node: helpSection
})
state.sidebar.openHelpSection = helpSection
break;
default:
return;
}
}
/*-------------------------------------------------------------------------
Handle changes to UI state.
-------------------------------------------------------------------------*/
const updateUi = (action) => {
switch (action.type) {
case "SCROLL_SEARCH":
ui_ScrollSearch();
break;
case "CHANGE_HOVER_PATH":
ui_ChangeHoverPath();
break;
case "FOLDER_CLICK":
const _state = ui_ToggleFolder(action.node)
updateState({
type: "TOGGLE_FOLDER",
open: _state,
node: action.node
})
break;
case "JUMP_TO_NODE":
ui_JumpToNode(action.node)
break;
case "OPEN_ITEM_MENU":
itemMenu(action.node);
elements.libraryItemModal.style.top = state.explorer.menuPos.top;
elements.libraryItemModal.style.left = Math.min(
parseInt(state.explorer.menuPos.left),
document.body.clientWidth - elements.libraryItemModal.offsetWidth) - 15 + "px";
elements.libraryItemModal.classList.add("show-modal");
elements.disabler.style.visibility = 'visible';
// TODO: scroll into view if needed
break;
case "CLOSE_ITEM_MENU":
elements.libraryItemModal.classList.remove("show-modal");
elements.disabler.style.visibility = 'hidden';
elements.libraryItemModal.style.top = "0px";
elements.libraryItemModal.style.left = "0px";
break;
case "HIDE_HOVER_DETAILS":
const _oldNode = action.node;
if (!_oldNode) break;
_oldNode.style.borderColor = "rgba(0, 0, 0, 0)";
const _oldDetails = _oldNode.querySelector(".hover-details");
if (_oldDetails) {
_oldDetails.classList.add('hidden');
}
break;
case "SHOW_HOVER_DETAILS":
const _hoveredNode = action.node;
if (!_hoveredNode) break;
_hoveredNode.style.borderColor = "rgba(105, 105, 105, 0.507)";
!_hoveredNode.classList.contains("album") ?
_hoveredNode.style.cursor = "pointer" :
_hoveredNode.style.cursor = "default";
const _details = _hoveredNode.querySelector(".hover-details");
if (_details) {
_details.classList.remove('hidden');
}
break;
case "CLOSE_DIV":
elements.main.style.marginLeft = '0px';
elements.explorerContainer.style.marginLeft = "0px";
action.node.style.visibility = 'hidden';
break;
case "EXPAND_DIV":
action.node.style.visibility = 'visible';
elements.explorerContainer.style.marginLeft = "400px";
break;
case "CHANGE_CONTENT":
if (action.old) {
action.old.style.visibility = "hidden";
}
action.node.style.visibility = 'visible';