-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathP1_Output2_Sample.txt
More file actions
2007 lines (2007 loc) · 76 KB
/
P1_Output2_Sample.txt
File metadata and controls
2007 lines (2007 loc) · 76 KB
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
(0,32)
total songs: 0
total artists: 0
|Blind Lemon Jefferson| does not exist in the artist database.
|Blind Lemon Jefferson| is added to the artist database.
Memory pool expanded to be 64 bytes.
|Long Lonesome Blues| is added to the song database.
|Long Lonesome Blues| 5
total songs: 1
Blind Lemon Jefferson is removed from the artist database.
total artists: 0
Long Lonesome Blues is removed from the song database.
|Bukka White| is added to the artist database.
|Bukka White's first song| is added to the song database.
(39,25)
|Charley Patton| is added to the artist database.
Memory pool expanded to be 96 bytes.
|Mississippi Boweavil Blues| is added to the song database.
|Charley Patton| is removed from the artist database.
|Mississippi Boweavil Blues| is removed from the song database.
|Sleepy John Estes| is added to the artist database.
|Street Car Blues| is added to the song database.
|Bukka White| duplicates a record already in the artist database.
Memory pool expanded to be 128 bytes.
|Bukka White's second song| is added to the song database.
(103,25)
|Another Bukka White| is added to the artist database.
|Bukka White's first song| duplicates a record already in the song database.
|Bukka White| duplicates a record already in the artist database.
Memory pool expanded to be 160 bytes.
|Bukka White's third song| is added to the song database.
|Another Bukka White| duplicates a record already in the artist database.
|Bukka White's second song| duplicates a record already in the song database.
|Bukka White| duplicates a record already in the artist database.
Memory pool expanded to be 192 bytes.
|Bukka White's fourth song| is added to the song database.
|Another Bukka White| duplicates a record already in the artist database.
|Bukka White's third song| duplicates a record already in the song database.
|Johnny Winter| is added to the artist database.
|Bukka White's first song| duplicates a record already in the song database.
|Sleepy John Estes| is removed from the artist database.
|Street Car Blues| is removed from the song database.
|Bukka White| is removed from the artist database.
|Bukka White's fourth song| is removed from the song database.
|Johnny Winter| 5
|Another Bukka White| 7
total artists: 2
|Bukka White's third song| 6
|Bukka White's second song| 7
|Bukka White's first song| 8
total songs: 3
|Bukka White's first song| is removed from the song database.
|Johnny Winter| is removed from the artist database.
|Another Bukka White| 7
total artists: 1
|Bukka White's third song| 6
|Bukka White's second song| 7
total songs: 2
|Johnny Winter| is added to the artist database.
|Johnny Winter's first song| is added to the song database.
|Bukka White's second song| is removed from the song database.
(28,75) -> (165,27)
|Johnny Winter| 5
|Another Bukka White| 7
total artists: 2
|Bukka White's third song| 6
|Johnny Winter's first song| 9
total songs: 2
|Another Johnny Winter| is added to the artist database.
|Johnny Winter's first song| duplicates a record already in the song database.
|Johnny Winter| duplicates a record already in the artist database.
|Johnny Winter's second song| is added to the song database.
|Johnny Winter| duplicates a record already in the artist database.
|Johnny Winter's third song| is added to the song database.
|Another Johnny Winter| duplicates a record already in the artist database.
|Johnny Winter's second song| duplicates a record already in the song database.
|Johnny Winter| duplicates a record already in the artist database.
|Johnny Winter's first song| duplicates a record already in the song database.
|Another Johnny Winter| duplicates a record already in the artist database.
|Johnny Winter's third song| duplicates a record already in the song database.
|Another Johnny Winter| duplicates a record already in the artist database.
Memory pool expanded to be 224 bytes.
|Johnny Winter's fourth song| is added to the song database.
|Another Johnny Winter| duplicates a record already in the artist database.
Song hash table size doubled.
Memory pool expanded to be 256 bytes.
|Johnny Winter's fifth song| is added to the song database.
|Bukka White| does not exist in the artist database.
|Bruce Rowland| is added to the artist database.
Memory pool expanded to be 288 bytes.
|Mountain Theme| is added to the song database.
|Thomas Dolby| is added to the artist database.
Memory pool expanded to be 320 bytes.
|She Blinded Me With Science| is added to the song database.
Artist hash table size doubled.
|Cheo Feliciano| is added to the artist database.
Memory pool expanded to be 352 bytes.
|Juguete| is added to the song database.
|Johnny Winter| duplicates a record already in the artist database.
Memory pool expanded to be 384 bytes.
|Be Careful With A Fool| is added to the song database.
|Bruce Rowland| duplicates a record already in the artist database.
|Mountain Theme| duplicates a record already in the song database.
|Thomas Dolby| duplicates a record already in the artist database.
|She Blinded Me With Science| duplicates a record already in the song database.
|Cheo Feliciano| duplicates a record already in the artist database.
|Juguete| duplicates a record already in the song database.
|Johnny Winter| duplicates a record already in the artist database.
|Be Careful With A Fool| duplicates a record already in the song database.
|Kings Of Leon| is added to the artist database.
Song hash table size doubled.
|Wicker Chair| is added to the song database.
Memory pool expanded to be 416 bytes.
|Happy Mondays| is added to the artist database.
Memory pool expanded to be 448 bytes.
|Wrote For Luck (12 - Remastered version)| is added to the song database.
Memory pool expanded to be 480 bytes.
|Rita Chiarelli| is added to the artist database.
|Doggin' Around| is added to the song database.
Memory pool expanded to be 512 bytes.
|Tim Wilson| is added to the artist database.
Memory pool expanded to be 544 bytes.
|I Think My Wife Is Running Around On Me (Taco Hell)| is added to the song database.
Artist hash table size doubled.
Memory pool expanded to be 576 bytes.
|Ennio Morricone| is added to the artist database.
|Sporco Ma Distinto| is added to the song database.
Memory pool expanded to be 608 bytes.
|Tiny Bradshaw| is added to the artist database.
|Well Oh Well| is added to the song database.
|Happy Mondays| 2
|Bruce Rowland| 26
|Cheo Feliciano| 27
|Another Johnny Winter| 28
|Thomas Dolby| 29
|Tim Wilson| 30
|Rita Chiarelli| 31
|Ennio Morricone| 33
|Johnny Winter| 35
|Kings Of Leon| 36
|Another Bukka White| 37
|Tiny Bradshaw| 39
total artists: 12
|Bruce Rowland| is removed from the artist database.
|Mountain Theme| is removed from the song database.
(85,18) -> (245,16) -> (602,6)
|Thomas Dolby| is removed from the artist database.
|She Blinded Me With Science| is removed from the song database.
(85,18) -> (245,59) -> (602,6)
|Mountain Theme| does not exist in the song database.
(85,18) -> (245,59) -> (602,6)
|3 Doors Down| is added to the artist database.
|Sarah Yellin'| is added to the song database.
|Johnny Winter's third song| 1
|Johnny Winter's second song| 3
|Wicker Chair| 12
|Sporco Ma Distinto| 15
|Johnny Winter's first song| 19
|Wrote For Luck (12 - Remastered version)| 20
|I Think My Wife Is Running Around On Me (Taco Hell)| 21
|Sarah Yellin'| 22
|Doggin' Around| 28
|Well Oh Well| 30
|Johnny Winter's fifth song| 31
|Be Careful With A Fool| 33
|Bukka White's third song| 35
|Johnny Winter's fourth song| 36
|Juguete| 39
total songs: 15
(99,4) -> (260,44) -> (602,6)
|Akon| is added to the artist database.
|Over The Edge| is added to the song database.
|Gerard Lenorman| is added to the artist database.
Memory pool expanded to be 640 bytes.
|Soldats Ne Tirez Pas| is added to the song database.
Memory pool expanded to be 672 bytes.
|All Time Low| is added to the artist database.
|Shameless| is added to the song database.
|Barenaked Ladies| is added to the artist database.
Memory pool expanded to be 704 bytes.
|This Is Where It Ends (Album Version)| is added to the song database.
Memory pool expanded to be 736 bytes.
|themselves| is added to the artist database.
|Oversleeping| is added to the song database.
|DJ Quik| is added to the artist database.
Song hash table size doubled.
Memory pool expanded to be 768 bytes.
|Born and Raised In Compton| is added to the song database.
Memory pool expanded to be 800 bytes.
|Carl Smith| is added to the artist database.
|Hey Joe| is added to the song database.
|Jesus Jones| is added to the artist database.
Memory pool expanded to be 832 bytes.
|All The Answers| is added to the song database.
Memory pool expanded to be 864 bytes.
|Audio Adrenaline| is added to the artist database.
Memory pool expanded to be 896 bytes.
|My God (Audio Adrenaline Album Version)| is added to the song database.
Artist hash table size doubled.
|Chris Clark| is added to the artist database.
Memory pool expanded to be 928 bytes.
|If You Should Walk Away| is added to the song database.
|Loop Guru| is added to the artist database.
Memory pool expanded to be 960 bytes.
|The Mystery Epoch| is added to the song database.
|Chelsea| is added to the artist database.
|Decide| is added to the song database.
Memory pool expanded to be 992 bytes.
|Mr. Lif| is added to the artist database.
|For You| is added to the song database.
|All Time Low| is removed from the artist database.
|Shameless| is removed from the song database.
(99,4) -> (292,12) -> (630,14) -> (977,15)
|Aeoliah| is added to the artist database.
Memory pool expanded to be 1024 bytes.
|For Your Passion My Love| is added to the song database.
|Kyle Riabko| is added to the artist database.
Memory pool expanded to be 1056 bytes.
|Doesn't Get Much Better| is added to the song database.
|Gary Moore| is added to the artist database.
Memory pool expanded to be 1088 bytes.
|What Are We Here For| is added to the song database.
|Faithless| is added to the artist database.
|Six| is added to the song database.
|For You| is removed from the song database.
|Mr. Lif| is removed from the artist database.
|My God (Audio Adrenaline Album Version)| is removed from the song database.
|Audio Adrenaline| is removed from the artist database.
(99,4) -> (301,3) -> (643,1) -> (815,59) -> (959,18) -> (1078,10)
|Y&T| is added to the artist database.
|Black Tiger| is added to the song database.
(99,4) -> (301,3) -> (643,1) -> (815,59) -> (972,5) -> (1083,5)
|8Ball & MJG| is added to the artist database.
Memory pool expanded to be 1120 bytes.
Memory pool expanded to be 1152 bytes.
Memory pool expanded to be 1184 bytes.
|Pimpin' Don't Fail Me Now [Featuring Jazze Pha and Juvenile] (Explicit Album Version)| is added to the song database.
|No Address| is added to the artist database.
|Pretty Girl (Amended Version)| is added to the song database.
|Green Day| is added to the artist database.
Memory pool expanded to be 1216 bytes.
Memory pool expanded to be 1248 bytes.
|Wake Me Up When September Ends (Live at Foxboro_ MA 9/3/05)| is added to the song database.
Memory pool expanded to be 1280 bytes.
|Dream Warriors| is added to the artist database.
Memory pool expanded to be 1312 bytes.
Memory pool expanded to be 1344 bytes.
|Sound Clash (featuring Beenie Man) - FattaSly Extended Mix| is added to the song database.
|Charlie Peacock| is added to the artist database.
Memory pool expanded to be 1376 bytes.
|Down in the Lowlands| is added to the song database.
|Paula Santoro| is added to the artist database.
Memory pool expanded to be 1408 bytes.
Memory pool expanded to be 1440 bytes.
|The Girl From Ipanema (Garota De Ipanema)| is added to the song database.
|Sylver| is added to the artist database.
|Sympathy| is added to the song database.
Memory pool expanded to be 1472 bytes.
|Funeral For A Friend| is added to the artist database.
Memory pool expanded to be 1504 bytes.
|Your Revolution Is A Joke| is added to the song database.
|Dons| is added to the artist database.
Memory pool expanded to be 1536 bytes.
|American Lovebite| is added to the song database.
|Over The Hill| does not exist in the song database.
(99,4) -> (301,3) -> (643,1) -> (870,4) -> (972,5) -> (1508,28)
|Hot Chip| is added to the artist database.
|No| is added to the song database.
|Liam O'Flynn| is added to the artist database.
Song hash table size doubled.
Memory pool expanded to be 1568 bytes.
|Romeo's Exile| is added to the song database.
|Open Hand| is added to the artist database.
Memory pool expanded to be 1600 bytes.
|11th Street| is added to the song database.
|Tilman Sillescu| is added to the artist database.
Memory pool expanded to be 1632 bytes.
|Escape From The Underrealm| is added to the song database.
|Tilman Sillescu| is removed from the artist database.
|Escape From The Underrealm| is removed from the song database.
(301,3) -> (643,1) -> (870,4) -> (972,5) -> (1571,61)
|Novaspace| is added to the artist database.
Memory pool expanded to be 1664 bytes.
|Dancing With Tears In My Eyes 2004 (Nova Mix (Club Version))| is added to the song database.
|The Ruby Suns| is added to the artist database.
Memory pool expanded to be 1696 bytes.
|Function Of The Sun| is added to the song database.
Artist hash table size doubled.
|Buddy Miles| is added to the artist database.
Memory pool expanded to be 1728 bytes.
|Don't Keep Me Wondering| is added to the song database.
Memory pool expanded to be 1760 bytes.
|Esperanza Spalding / Leo Genovese| is added to the artist database.
Memory pool expanded to be 1792 bytes.
|If That's True| is added to the song database.
|Dave Eggar| is added to the artist database.
|Deep Blue| is added to the song database.
Memory pool expanded to be 1824 bytes.
|Michael Gettel| is added to the artist database.
|Safe Passage| is added to the song database.
Memory pool expanded to be 1856 bytes.
|John Cale| is added to the artist database.
Memory pool expanded to be 1888 bytes.
|Movement 4 [from Kiss] (Album Version)| is added to the song database.
|Jean Corti| is added to the artist database.
Memory pool expanded to be 1920 bytes.
|C'Etait Bien| is added to the song database.
|L7| is added to the artist database.
|Baggage| is added to the song database.
|C'Etait Bien| is removed from the song database.
|Jean Corti| is removed from the artist database.
(301,3) -> (643,1) -> (972,5) -> (1873,26) -> (1908,12)
|Baggage| is removed from the song database.
|L7| is removed from the artist database.
(301,3) -> (643,1) -> (870,4) -> (972,5) -> (1873,47)
|L7| does not exist in the artist database.
(301,3) -> (643,1) -> (870,4) -> (972,5) -> (1873,47)
|Loop Guru| 1
|Happy Mondays| 2
|Dons| 4
|Faithless| 5
|Buddy Miles| 7
|Funeral For A Friend| 8
|Barenaked Ladies| 24
|Cheo Feliciano| 26
|Tim Wilson| 27
|Another Johnny Winter| 28
|Michael Gettel| 30
|Rita Chiarelli| 31
|Akon| 33
|Dave Eggar| 37
|Novaspace| 38
|8Ball & MJG| 49
|Dream Warriors| 53
|Carl Smith| 55
|Chris Clark| 56
|Liam O'Flynn| 57
|Jesus Jones| 75
|Kings Of Leon| 76
|Kyle Riabko| 77
|Paula Santoro| 78
|Tiny Bradshaw| 79
|John Cale| 80
|Open Hand| 83
|DJ Quik| 89
|Gary Moore| 90
|Esperanza Spalding / Leo Genovese| 91
|No Address| 101
|3 Doors Down| 102
|Aeoliah| 106
|Gerard Lenorman| 107
|themselves| 108
|Green Day| 110
|Johnny Winter| 115
|Another Bukka White| 117
|Chelsea| 118
|Sylver| 120
|Y&T| 121
|The Ruby Suns| 122
|Hot Chip| 139
|Charlie Peacock| 142
|Ennio Morricone| 149
total artists: 45
(301,3) -> (643,1) -> (870,4) -> (972,5) -> (1873,47)
|Bruce Rowland| is added to the artist database.
|Mountain Theme| is added to the song database.
|Thomas Dolby| is added to the artist database.
Memory pool expanded to be 1952 bytes.
|She Blinded Me With Science| is added to the song database.
|Bruce Rowland| is removed from the artist database.
|Mountain Theme| is removed from the song database.
|Mountain Theme| does not exist in the song database.
|Cheo Feliciano| duplicates a record already in the artist database.
|Juguete| duplicates a record already in the song database.
|Johnny Winter| duplicates a record already in the artist database.
|Be Careful With A Fool| duplicates a record already in the song database.
|Kings Of Leon| duplicates a record already in the artist database.
|Wicker Chair| duplicates a record already in the song database.
|Happy Mondays| duplicates a record already in the artist database.
|Wrote For Luck (12 - Remastered version)| duplicates a record already in the song database.
|Rita Chiarelli| duplicates a record already in the artist database.
|Doggin' Around| duplicates a record already in the song database.
|Tim Wilson| duplicates a record already in the artist database.
|I Think My Wife Is Running Around On Me (Taco Hell)| duplicates a record already in the song database.
|Ennio Morricone| duplicates a record already in the artist database.
|Sporco Ma Distinto| duplicates a record already in the song database.
|Tiny Bradshaw| duplicates a record already in the artist database.
|Well Oh Well| duplicates a record already in the song database.
|3 Doors Down| duplicates a record already in the artist database.
|Sarah Yellin'| duplicates a record already in the song database.
|Akon| duplicates a record already in the artist database.
|Over The Edge| duplicates a record already in the song database.
|akkkk| does not exist in the artist database.
|Over The Edge| is removed from the song database.
|Akon| is removed from the artist database.
|Gerard Lenorman| duplicates a record already in the artist database.
|Soldats Ne Tirez Pas| duplicates a record already in the song database.
|All Time Low| is added to the artist database.
|Shameless| is added to the song database.
|Barenaked Ladies| duplicates a record already in the artist database.
|This Is Where It Ends (Album Version)| duplicates a record already in the song database.
|themselves| duplicates a record already in the artist database.
|Oversleeping| duplicates a record already in the song database.
|DJ Quik| duplicates a record already in the artist database.
|Born and Raised In Compton| duplicates a record already in the song database.
|Carl Smith| duplicates a record already in the artist database.
|Hey Joe| duplicates a record already in the song database.
|Jesus Jones| duplicates a record already in the artist database.
|All The Answers| duplicates a record already in the song database.
|Audio Adrenaline| is added to the artist database.
Memory pool expanded to be 1984 bytes.
Memory pool expanded to be 2016 bytes.
|My God (Audio Adrenaline Album Version)| is added to the song database.
|Chris Clark| duplicates a record already in the artist database.
|If You Should Walk Away| duplicates a record already in the song database.
|Loop Guru| duplicates a record already in the artist database.
|The Mystery Epoch| duplicates a record already in the song database.
|Chelsea| duplicates a record already in the artist database.
|Decide| duplicates a record already in the song database.
|Kyle Riabko| is removed from the artist database.
|Doesn't Get Much Better| is removed from the song database.
|Carl Smith| is removed from the artist database.
|Hey Joe| is removed from the song database.
|Jesus Jones| is removed from the artist database.
|All The Answers| is removed from the song database.
|Loop Guru| is removed from the artist database.
|The Mystery Epoch| is removed from the song database.
|Sylver| is removed from the artist database.
|Sympathy| is removed from the song database.
|Dons| is removed from the artist database.
|American Lovebite| is removed from the song database.
|Dons| does not exist in the artist database.
|Dons| does not exist in the artist database.
|Dons| does not exist in the artist database.
|Happy Mondays| 2
|Faithless| 5
|Buddy Miles| 7
|Funeral For A Friend| 8
|Barenaked Ladies| 24
|Cheo Feliciano| 26
|Tim Wilson| 27
|Another Johnny Winter| 28
|Michael Gettel| 30
|Rita Chiarelli| 31
|Dave Eggar| 37
|Novaspace| 38
|Audio Adrenaline| 46
|8Ball & MJG| 49
|Dream Warriors| 53
|Chris Clark| 56
|Liam O'Flynn| 57
|Thomas Dolby| 68
|Kings Of Leon| 76
|Paula Santoro| 78
|Tiny Bradshaw| 79
|John Cale| 80
|Open Hand| 83
|All Time Low| 85
|DJ Quik| 89
|Gary Moore| 90
|Esperanza Spalding / Leo Genovese| 91
|No Address| 101
|3 Doors Down| 102
|Aeoliah| 106
|Gerard Lenorman| 107
|themselves| 108
|Green Day| 110
|Johnny Winter| 115
|Another Bukka White| 117
|Chelsea| 118
|Y&T| 121
|The Ruby Suns| 122
|Hot Chip| 139
|Charlie Peacock| 142
|Ennio Morricone| 149
total artists: 41
|Johnny Winter's second song| 3
|Sound Clash (featuring Beenie Man) - FattaSly Extended Mix| 9
|Wake Me Up When September Ends (Live at Foxboro_ MA 9/3/05)| 12
|No| 14
|My God (Audio Adrenaline Album Version)| 19
|Wrote For Luck (12 - Remastered version)| 20
|If That's True| 25
|Doggin' Around| 28
|Pimpin' Don't Fail Me Now [Featuring Jazze Pha and Juvenile] (Explicit Album Version)| 29
|Dancing With Tears In My Eyes 2004 (Nova Mix (Club Version))| 30
|Pretty Girl (Amended Version)| 31
|Safe Passage| 38
|If You Should Walk Away| 39
|Deep Blue| 41
|Soldats Ne Tirez Pas| 43
|This Is Where It Ends (Album Version)| 44
|Romeo's Exile| 47
|Shameless| 52
|Johnny Winter's first song| 59
|Born and Raised In Compton| 60
|What Are We Here For| 63
|Movement 4 [from Kiss] (Album Version)| 65
|The Girl From Ipanema (Garota De Ipanema)| 67
|Juguete| 79
|Oversleeping| 82
|Six| 84
|11th Street| 87
|Sporco Ma Distinto| 94
|Down in the Lowlands| 101
|Decide| 104
|Well Oh Well| 110
|Johnny Winter's fifth song| 111
|Be Careful With A Fool| 113
|Black Tiger| 116
|Johnny Winter's third song| 121
|For Your Passion My Love| 126
|Function Of The Sun| 129
|Wicker Chair| 132
|I Think My Wife Is Running Around On Me (Taco Hell)| 141
|Sarah Yellin'| 142
|She Blinded Me With Science| 144
|Don't Keep Me Wondering| 153
|Bukka White's third song| 155
|Johnny Winter's fourth song| 156
|Your Revolution Is A Joke| 159
total songs: 45
(274,1) -> (301,3) -> (602,6) -> (630,14) -> (764,51) -> (870,4) -> (912,30) -> (972,5) -> (1003,25) -> (1416,18) -> (1483,25) -> (1902,2) -> (1988,28)
|Silverstein| is added to the artist database.
|Always And Never (Album Version)| is added to the song database.
|David Arkenstone| is added to the artist database.
|The Forgotten Lands| is added to the song database.
|Dead Kennedys| is added to the artist database.
|Kill the Poor| is added to the song database.
|Placebo| is added to the artist database.
|The Never-Ending Why| is added to the song database.
|R.L. Burnside| is added to the artist database.
|Over The Hill| is added to the song database.
Memory pool expanded to be 2048 bytes.
|Liquid Stranger| is added to the artist database.
|Drop Sacrifice| is added to the song database.
Memory pool expanded to be 2080 bytes.
|Mr. Lif| is added to the artist database.
|For You| is added to the song database.
|Aeoliah| duplicates a record already in the artist database.
|For Your Passion My Love| duplicates a record already in the song database.
|Kyle Riabko| is added to the artist database.
Memory pool expanded to be 2112 bytes.
|Doesn't Get Much Better| is added to the song database.
|Gary Moore| duplicates a record already in the artist database.
|What Are We Here For| duplicates a record already in the song database.
|Faithless| duplicates a record already in the artist database.
|Six| duplicates a record already in the song database.
|8Ball & MJG| duplicates a record already in the artist database.
|Pimpin' Don't Fail Me Now [Featuring Jazze Pha and Juvenile] (Explicit Album Version)| duplicates a record already in the song database.
|No Address| duplicates a record already in the artist database.
|Pretty Girl (Amended Version)| duplicates a record already in the song database.
|Green Day| duplicates a record already in the artist database.
|Wake Me Up When September Ends (Live at Foxboro_ MA 9/3/05)| duplicates a record already in the song database.
|Dream Warriors| duplicates a record already in the artist database.
|Sound Clash (featuring Beenie Man) - FattaSly Extended Mix| duplicates a record already in the song database.
|Charlie Peacock| duplicates a record already in the artist database.
|Down in the Lowlands| duplicates a record already in the song database.
|Paula Santoro| duplicates a record already in the artist database.
|The Girl From Ipanema (Garota De Ipanema)| duplicates a record already in the song database.
|Sylver| is added to the artist database.
Memory pool expanded to be 2144 bytes.
|Sympathy| is added to the song database.
|Kill the Poor| is removed from the song database.
|Dead Kennedys| is removed from the artist database.
|The Never-Ending Why| is removed from the song database.
|Placebo| is removed from the artist database.
|Over The Hill| is removed from the song database.
|R.L. Burnside| is removed from the artist database.
|Drop Sacrifice| is removed from the song database.
|Liquid Stranger| is removed from the artist database.
|Sylver| does not exist in the song database.
|Drop Sacrifice| does not exist in the song database.
|Drop Sacrifice| does not exist in the song database.
|Drop Sacrifice| does not exist in the song database.
|The Girl From Ipanema (Garota De Ipanema)| is removed from the song database.
|Paula Santoro| is removed from the artist database.
|Happy Mondays| 2
|Faithless| 5
|Buddy Miles| 7
|Funeral For A Friend| 8
|Barenaked Ladies| 24
|Cheo Feliciano| 26
|Tim Wilson| 27
|Another Johnny Winter| 28
|Michael Gettel| 30
|Rita Chiarelli| 31
|Dave Eggar| 37
|Novaspace| 38
|Audio Adrenaline| 46
|8Ball & MJG| 49
|Dream Warriors| 53
|Chris Clark| 56
|Liam O'Flynn| 57
|Mr. Lif| 58
|Silverstein| 61
|Thomas Dolby| 68
|Kings Of Leon| 76
|Kyle Riabko| 77
|Tiny Bradshaw| 79
|John Cale| 80
|Open Hand| 83
|All Time Low| 85
|DJ Quik| 89
|Gary Moore| 90
|Esperanza Spalding / Leo Genovese| 91
|No Address| 101
|3 Doors Down| 102
|Aeoliah| 106
|Gerard Lenorman| 107
|themselves| 108
|Green Day| 110
|Johnny Winter| 115
|Another Bukka White| 117
|Chelsea| 118
|Sylver| 120
|Y&T| 121
|The Ruby Suns| 122
|David Arkenstone| 135
|Hot Chip| 139
|Charlie Peacock| 142
|Ennio Morricone| 149
total artists: 45
|For You| 0
|Johnny Winter's second song| 3
|Sound Clash (featuring Beenie Man) - FattaSly Extended Mix| 9
|Wake Me Up When September Ends (Live at Foxboro_ MA 9/3/05)| 12
|No| 14
|My God (Audio Adrenaline Album Version)| 19
|Wrote For Luck (12 - Remastered version)| 20
|If That's True| 25
|Doggin' Around| 28
|Pimpin' Don't Fail Me Now [Featuring Jazze Pha and Juvenile] (Explicit Album Version)| 29
|Dancing With Tears In My Eyes 2004 (Nova Mix (Club Version))| 30
|Pretty Girl (Amended Version)| 31
|Safe Passage| 38
|If You Should Walk Away| 39
|Deep Blue| 41
|Soldats Ne Tirez Pas| 43
|This Is Where It Ends (Album Version)| 44
|Romeo's Exile| 47
|Shameless| 52
|Johnny Winter's first song| 59
|Born and Raised In Compton| 60
|What Are We Here For| 63
|Movement 4 [from Kiss] (Album Version)| 65
|Juguete| 79
|Oversleeping| 82
|Six| 84
|11th Street| 87
|Doesn't Get Much Better| 90
|Sporco Ma Distinto| 94
|Down in the Lowlands| 101
|Decide| 104
|Well Oh Well| 110
|Johnny Winter's fifth song| 111
|Be Careful With A Fool| 113
|Always And Never (Album Version)| 114
|Black Tiger| 116
|Johnny Winter's third song| 121
|For Your Passion My Love| 126
|Function Of The Sun| 129
|Wicker Chair| 132
|The Forgotten Lands| 133
|I Think My Wife Is Running Around On Me (Taco Hell)| 141
|Sarah Yellin'| 142
|She Blinded Me With Science| 144
|Sympathy| 148
|Don't Keep Me Wondering| 153
|Bukka White's third song| 155
|Johnny Winter's fourth song| 156
|Your Revolution Is A Joke| 159
total songs: 49
(274,1) -> (301,3) -> (602,6) -> (643,1) -> (798,17) -> (870,4) -> (912,30) -> (972,5) -> (1024,4) -> (1358,58) -> (1483,25) -> (1902,2) -> (1988,55) -> (2117,27)
|Funeral For A Friend| duplicates a record already in the artist database.
|Your Revolution Is A Joke| duplicates a record already in the song database.
|Y&T| duplicates a record already in the artist database.
|Black Tiger| duplicates a record already in the song database.
|Dons| is added to the artist database.
|American Lovebite| is added to the song database.
|Hot Chip| duplicates a record already in the artist database.
|No| duplicates a record already in the song database.
|Sister Hazel| is added to the artist database.
|Cerilene| is added to the song database.
|Delirious| is added to the artist database.
|God You Are My God| is added to the song database.
|Winston McAnuff_ The Bazbaz Orchestra| is added to the artist database.
|Common sense| is added to the song database.
|Teenage Fanclub| is added to the artist database.
|The World'll Be OK| is added to the song database.
|Samy Deluxe| is added to the artist database.
Memory pool expanded to be 2176 bytes.
|Die Meisten| is added to the song database.
|James Horner| is added to the artist database.
Memory pool expanded to be 2208 bytes.
|Good Friend| is added to the song database..
Memory pool expanded to be 2240 bytes.
|Jennifer Lopez featuring Ja Rule| is added to the artist database.
|I'm Real| is added to the song database.
|The Presets| is added to the artist database.
|If I Know You| is added to the song database.
Memory pool expanded to be 2272 bytes.
|Arturo Sandoval| is added to the artist database.
|Waheera| is added to the song database.
Memory pool expanded to be 2304 bytes.
|Drowning Pool| is added to the artist database.
|Reborn (Explicit)| is added to the song database.
Memory pool expanded to be 2336 bytes.
|Faith Hill & Tim McGraw| is added to the artist database.
Memory pool expanded to be 2368 bytes.
|Let's Make Love (Album Version)| is added to the song database.
Memory pool expanded to be 2400 bytes.
|Gene Autry| is added to the artist database.
|Frankie And Johnny| is added to the song database.
Memory pool expanded to be 2432 bytes.
|Sergio Mendes / Black Eyed Peas| is added to the artist database.
Memory pool expanded to be 2464 bytes.
|Mas Que Nada| is added to the song database.
|Kassav'| is added to the artist database.
|Loko| is added to the song database.
|Liam O'Flynn| duplicates a record already in the artist database.
|Romeo's Exile| duplicates a record already in the song database.
|Open Hand| duplicates a record already in the artist database.
|11th Street| duplicates a record already in the song database.
|Tilman Sillescu| is added to the artist database.
Memory pool expanded to be 2496 bytes.
|Escape From The Underrealm| is added to the song database.
|Novaspace| duplicates a record already in the artist database.
|Dancing With Tears In My Eyes 2004 (Nova Mix (Club Version))| duplicates a record already in the song database.
|The Ruby Suns| duplicates a record already in the artist database.
|Function Of The Sun| duplicates a record already in the song database.
|Buddy Miles| duplicates a record already in the artist database.
|Don't Keep Me Wondering| duplicates a record already in the song database.
|Esperanza Spalding / Leo Genovese| duplicates a record already in the artist database.
|If That's True| duplicates a record already in the song database.
|Dave Eggar| duplicates a record already in the artist database.
|Deep Blue| duplicates a record already in the song database.
|Michael Gettel| duplicates a record already in the artist database.
|Safe Passage| duplicates a record already in the song database.
|John Cale| duplicates a record already in the artist database.
|Movement 4 [from Kiss] (Album Version)| duplicates a record already in the song database.
Memory pool expanded to be 2528 bytes.
|Jean Corti| is added to the artist database.
|C'Etait Bien| is added to the song database.
|L7| is added to the artist database.
|Baggage| is added to the song database.
|Jean Corti| is removed from the artist database.
|C'Etait Bien| is removed from the song database.
|Jean Corti| does not exist in the artist database.
|Richard Galliano| does not exist in the artist database.
|Movement 4 [from Kiss] (Album Version)| is removed from the song database.
|John Cale| is removed from the artist database.
|If That's True| is removed from the song database.
|Esperanza Spalding / Leo Genovese| is removed from the artist database.
|Richard Galliano| is added to the artist database.
|Honey Fingers| is added to the song database.
|4Him| is added to the artist database.
|Strange Way To Save The World| is added to the song database.
|Winifred Phillips| is added to the artist database.
|Sporable| is added to the song database.
|kkkkk| does not exist in the song database.
|kkkkk| does not exist in the song database.
|kkkkk| does not exist in the song database.
|Strange Way To Save The World| is removed from the song database.
|4Him| is removed from the artist database.
|Otis Spann| is added to the artist database.
|Can't Do Me No Good| is added to the song database.
|Dokken| is added to the artist database.
|Disease| is added to the song database.
|David Summers| is added to the artist database.
Memory pool expanded to be 2560 bytes.
|2.000 Kilometros| is added to the song database.
|Love Jones| is added to the artist database.
Memory pool expanded to be 2592 bytes.
|Matter Of Fact| is added to the song database.
|The Motors| is added to the artist database.
Memory pool expanded to be 2624 bytes.
|Dancing The Night Away| is added to the song database.
|Junior Reid| is added to the artist database.
Memory pool expanded to be 2656 bytes.
Memory pool expanded to be 2688 bytes.
|Boom-Shack-A-Lack (12 Mmix / Bonus Tra)| is added to the song database.
|Alexandre Desplat| is added to the artist database.
Memory pool expanded to be 2720 bytes.
|Hidden Documents| is added to the song database.
|Love Jones| is removed from the artist database.
|Matter Of Fact| is removed from the song database.
|The Motors| is removed from the artist database.
|Dancing The Night Away| is removed from the song database.
|Hidden Documents| is removed from the song database.
|Alexandre Desplat| is removed from the artist database.
|Dancing The Night Away| does not exist in the song database.
|Sergio Mendes / Black Eyed Peas| is removed from the artist database.
|Mas Que Nada| is removed from the song database.
|Dokken| is removed from the artist database.
|Disease| is removed from the song database.
|Liam O'Flynn| is removed from the artist database.
|Romeo's Exile| is removed from the song database.
|Teenage Fanclub| is removed from the artist database.
|The World'll Be OK| is removed from the song database.
|Groupa| is added to the artist database.
|Bliv Du Till Gran (If You Became A Spruce)| is added to the song database.
|Regina Belle| is added to the artist database.
|Quiet Time| is added to the song database.
|Ricardo Lemvo| is added to the artist database.
|Yiri Yiri Bon| is added to the song database.
|Andreas Dorau| is added to the artist database.
|So ist das nun mal| is added to the song database.
|Enslavement Of Beauty| is added to the artist database.
|Ye That Tempteth_ Ye That Bequeth| is added to the song database.
|Little Milton| is added to the artist database.
Memory pool expanded to be 2752 bytes.
Memory pool expanded to be 2784 bytes.
|Walking The Back Streets And Crying| is added to the song database.
|Les Ogres De Barback| is added to the artist database.
|De rien| is added to the song database.
|KRS-One| is added to the artist database.
Memory pool expanded to be 2816 bytes.
|Getaway| is added to the song database.
|Slim Whitman| is added to the artist database.
Memory pool expanded to be 2848 bytes.
|Indian Love Call| is added to the song database.
|Simply Red| is added to the artist database.
Memory pool expanded to be 2880 bytes.
|So Not Over You (Motivo-Pop Lectro Mix)| is added to the song database.
Memory pool expanded to be 2912 bytes.
|Seguridad Social| is added to the artist database.
|Soc Mediterrani| is added to the song database.
Memory pool expanded to be 2944 bytes.
|Chroma Key| is added to the artist database.
|Salvation| is added to the song database.
Memory pool expanded to be 2976 bytes.
|The Paul Butterfield Blues Band| is added to the artist database.
Memory pool expanded to be 3008 bytes.
|Pretty Woman (LP Version)| is added to the song database.
Memory pool expanded to be 3040 bytes.
|The Sugarhill Gang| is added to the artist database.
|8th Wonder| is added to the song database.
Memory pool expanded to be 3072 bytes.
|Symphony in Peril| is added to the artist database.
Song hash table size doubled.
|Inherent Scars| is added to the song database.
|Helmet| is added to the artist database.
|Tic| is added to the song database.
|Behemoth| is added to the artist database.
Memory pool expanded to be 3104 bytes.
|No Sympathy For Fools| is added to the song database.
Memory pool expanded to be 3136 bytes.
|Alice Cooper| is added to the artist database.
Memory pool expanded to be 3168 bytes.
|Make That Money (Scrooge's Song) (Album Version)| is added to the song database.
Artist hash table size doubled.
|Fat Joe| is added to the artist database.
Memory pool expanded to be 3200 bytes.
Memory pool expanded to be 3232 bytes.
|Prove Something (explicit album version)| is added to the song database.
|Francis Lai| is added to the artist database.
Memory pool expanded to be 3264 bytes.
|13 jours en France| is added to the song database.
|RUN-DMC| is added to the artist database.
|King Of Rock| is added to the song database.
Memory pool expanded to be 3296 bytes.
|Spongebob Squarepants| is added to the artist database.
Memory pool expanded to be 3328 bytes.
|Ripped Pants| is added to the song database.
|Red Stick Ramblers| is added to the artist database.
Memory pool expanded to be 3360 bytes.
|Why_ Now Baby?| is added to the song database.
|Obie Bermudez| is added to the artist database.
Memory pool expanded to be 3392 bytes.
|Antes (Salsa Version)| is added to the song database.
|V V Brown| is added to the artist database.
|LEAVE!| is added to the song database.
Memory pool expanded to be 3424 bytes.
|Bravehearts| is added to the artist database.
|Sensations| is added to the song database.
Memory pool expanded to be 3456 bytes.
|Evanescence| is added to the artist database.
|Good Enough| is added to the song database.
Memory pool expanded to be 3488 bytes.
|Everyday Sunday| is added to the artist database.
Memory pool expanded to be 3520 bytes.
|Wake Up! Wake Up! (Wake Up! Wake Up! Album Version)| is added to the song database.
Memory pool expanded to be 3552 bytes.
|Robben Ford| is added to the artist database.
Memory pool expanded to be 3584 bytes.
|Talk To Your Daughter (Album Version)| is added to the song database.
|High Strung_ The| is added to the artist database.
Memory pool expanded to be 3616 bytes.
|Show a Sign of Life| is added to the song database.
|Maroon 5| is added to the artist database.
Memory pool expanded to be 3648 bytes.
|Sweetest Goodbye| is added to the song database.
|Hem| is added to the artist database.
|Redwing| is added to the song database.
Memory pool expanded to be 3680 bytes.
|Bikini Machine| is added to the artist database.
|The Race| is added to the song database.
Memory pool expanded to be 3712 bytes.
|Jackson United| is added to the artist database.
|Undertow| is added to the song database.
|White Willow| is added to the artist database.
Memory pool expanded to be 3744 bytes.
|The Dark Road| is added to the song database.
|Guns N' Roses| is added to the artist database.
Memory pool expanded to be 3776 bytes.
|Patience| is added to the song database.
|Kitaro| is added to the artist database.
Memory pool expanded to be 3808 bytes.
|Harmony Of The Forest| is added to the song database.
|Talib Kweli| is added to the artist database.
Memory pool expanded to be 3840 bytes.
|Everything Man (Album Version)| is added to the song database.
|Zeromancer| is added to the artist database.
Memory pool expanded to be 3872 bytes.
|Send Me An Angel| is added to the song database.
|Baby Bash / Grimm| is added to the artist database.
Memory pool expanded to be 3904 bytes.
|Changed My Life| is added to the song database.
Memory pool expanded to be 3936 bytes.
|Rickie Lee Jones| is added to the artist database.
Memory pool expanded to be 3968 bytes.
|Danny's All-Star Joint (LP Version)| is added to the song database.
|Beastie Boys| is added to the artist database.
Memory pool expanded to be 4000 bytes.
|Get It Together| is added to the song database.
|Nightwish| is added to the artist database.
Memory pool expanded to be 4032 bytes.
|Beauty And The Beast| is added to the song database.
|Teenage Fanclub| is added to the artist database.
Memory pool expanded to be 4064 bytes.
|It's All In My Mind| is added to the song database.
Memory pool expanded to be 4096 bytes.
|Commander Cody And His Lost Planet Airmen| is added to the artist database.
Memory pool expanded to be 4128 bytes.
|Riot In Cell Block #9| is added to the song database.
|Jeremy Spencer| is added to the artist database.
Memory pool expanded to be 4160 bytes.
|Maria De Santiago| is added to the song database.
Memory pool expanded to be 4192 bytes.
|Memphis Minnie| is added to the artist database.
|Nothing In Rambling| is added to the song database.
Memory pool expanded to be 4224 bytes.
|BoDeans| is added to the artist database.
|Lookin' For Me Somewhere| is added to the song database.
Memory pool expanded to be 4256 bytes.
|Wesley Tuttle| is added to the artist database.
Memory pool expanded to be 4288 bytes.
|With Tears In My Eyes| is added to the song database.
|The Plimsouls| is added to the artist database.
|Women| is added to the song database.
|The Killers| is added to the artist database.
Memory pool expanded to be 4320 bytes.
|A Dustland Fairytale| is added to the song database.
Memory pool expanded to be 4352 bytes.
|Juana Molina| is added to the artist database.
|Micael| is added to the song database.
|The Chap| is added to the artist database.
Memory pool expanded to be 4384 bytes.
|Volumatic Spacer Device| is added to the song database.
|Aisha Duo| is added to the artist database.
Memory pool expanded to be 4416 bytes.
|Sea_ Subsurface| is added to the song database.
|Sonora Carruseles| is added to the artist database.
Memory pool expanded to be 4448 bytes.
|Chela| is added to the song database.
|Ensiferum| is added to the artist database.
|Into Battle| is added to the song database.
Memory pool expanded to be 4480 bytes.
|Young-Holt Unlimited| is added to the artist database.
Memory pool expanded to be 4512 bytes.
|We've Only Just Begun (LP Version)| is added to the song database.
|Oztara| is added to the artist database.
Memory pool expanded to be 4544 bytes.
|La Route Est Belle| is added to the song database.
|Mithotyn| is added to the artist database.
Memory pool expanded to be 4576 bytes.
|On Misty Pathways| is added to the song database.
|Albert Collins| is added to the artist database.
Memory pool expanded to be 4608 bytes.
|Same Old Thing| is added to the song database.
|Bad Company| is added to the artist database.
Memory pool expanded to be 4640 bytes.
|Crazy Circles| is added to the song database.
|John Frizzell| is added to the artist database.
Memory pool expanded to be 4672 bytes.
|No Unexpected Guests| is added to the song database.
|Wyclef Jean| is added to the artist database.
Memory pool expanded to be 4704 bytes.
|Heaven's In New York| is added to the song database.
Memory pool expanded to be 4736 bytes.
|Agnostic Front| is added to the artist database.
|No One Hears You| is added to the song database.
|Orbital| is added to the artist database.
Memory pool expanded to be 4768 bytes.
|Chime (edit)| is added to the song database.
|Butthole Surfers| is added to the artist database.
Memory pool expanded to be 4800 bytes.
|22 Going On 23| is added to the song database.
|Torcuato Mariano| is added to the artist database.