hornairs-scrobbler 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (161) hide show
  1. data/.gitignore +13 -0
  2. data/.loadpath +5 -0
  3. data/History.txt +5 -0
  4. data/MIT-LICENSE +19 -0
  5. data/Manifest +75 -0
  6. data/README.rdoc +104 -0
  7. data/Rakefile +10 -0
  8. data/VERSION.yml +5 -0
  9. data/examples/album.rb +20 -0
  10. data/examples/artist.rb +13 -0
  11. data/examples/playlist.rb +7 -0
  12. data/examples/scrobble.rb +31 -0
  13. data/examples/tag.rb +11 -0
  14. data/examples/track.rb +12 -0
  15. data/examples/user.rb +15 -0
  16. data/lib/scrobbler.rb +33 -0
  17. data/lib/scrobbler/album.rb +181 -0
  18. data/lib/scrobbler/artist.rb +165 -0
  19. data/lib/scrobbler/auth.rb +47 -0
  20. data/lib/scrobbler/base.rb +105 -0
  21. data/lib/scrobbler/event.rb +105 -0
  22. data/lib/scrobbler/geo.rb +27 -0
  23. data/lib/scrobbler/helper/image.rb +52 -0
  24. data/lib/scrobbler/helper/streamable.rb +40 -0
  25. data/lib/scrobbler/library.rb +112 -0
  26. data/lib/scrobbler/playing.rb +49 -0
  27. data/lib/scrobbler/playlist.rb +87 -0
  28. data/lib/scrobbler/radio.rb +12 -0
  29. data/lib/scrobbler/rest.rb +47 -0
  30. data/lib/scrobbler/scrobble.rb +116 -0
  31. data/lib/scrobbler/session.rb +9 -0
  32. data/lib/scrobbler/shout.rb +21 -0
  33. data/lib/scrobbler/simpleauth.rb +60 -0
  34. data/lib/scrobbler/tag.rb +113 -0
  35. data/lib/scrobbler/track.rb +152 -0
  36. data/lib/scrobbler/user.rb +222 -0
  37. data/lib/scrobbler/venue.rb +67 -0
  38. data/setup.rb +1585 -0
  39. data/tasks/jeweler.rake +15 -0
  40. data/tasks/rdoc.rake +7 -0
  41. data/tasks/tests.rake +13 -0
  42. data/tasks/yardoc.rake +8 -0
  43. data/test/fixtures/xml/album/info.xml +43 -0
  44. data/test/fixtures/xml/artist/fans.xml +52 -0
  45. data/test/fixtures/xml/artist/info.xml +58 -0
  46. data/test/fixtures/xml/artist/similar.xml +1004 -0
  47. data/test/fixtures/xml/artist/topalbums.xml +61 -0
  48. data/test/fixtures/xml/artist/toptags.xml +19 -0
  49. data/test/fixtures/xml/artist/toptracks.xml +62 -0
  50. data/test/fixtures/xml/auth/session.xml +7 -0
  51. data/test/fixtures/xml/auth/token.xml +3 -0
  52. data/test/fixtures/xml/event/attend.xml +3 -0
  53. data/test/fixtures/xml/event/attendees.xml +53 -0
  54. data/test/fixtures/xml/event/event.xml +35 -0
  55. data/test/fixtures/xml/event/shouts.xml +35 -0
  56. data/test/fixtures/xml/geo/events-distance-p1.xml +151 -0
  57. data/test/fixtures/xml/geo/events-lat-long.xml +167 -0
  58. data/test/fixtures/xml/geo/events-p1.xml +152 -0
  59. data/test/fixtures/xml/geo/events-p2.xml +380 -0
  60. data/test/fixtures/xml/geo/events-p3.xml +427 -0
  61. data/test/fixtures/xml/geo/top_artists-p1.xml +76 -0
  62. data/test/fixtures/xml/geo/top_tracks-p1.xml +77 -0
  63. data/test/fixtures/xml/library/albums-f30.xml +454 -0
  64. data/test/fixtures/xml/library/albums-p1.xml +754 -0
  65. data/test/fixtures/xml/library/albums-p2.xml +754 -0
  66. data/test/fixtures/xml/library/albums-p3.xml +754 -0
  67. data/test/fixtures/xml/library/albums-p4.xml +739 -0
  68. data/test/fixtures/xml/library/albums-p5.xml +754 -0
  69. data/test/fixtures/xml/library/albums-p6.xml +754 -0
  70. data/test/fixtures/xml/library/albums-p7.xml +739 -0
  71. data/test/fixtures/xml/library/albums-p8.xml +724 -0
  72. data/test/fixtures/xml/library/artists-f30.xml +334 -0
  73. data/test/fixtures/xml/library/artists-p1.xml +554 -0
  74. data/test/fixtures/xml/library/artists-p2.xml +554 -0
  75. data/test/fixtures/xml/library/artists-p3.xml +554 -0
  76. data/test/fixtures/xml/library/artists-p4.xml +554 -0
  77. data/test/fixtures/xml/library/artists-p5.xml +554 -0
  78. data/test/fixtures/xml/library/artists-p6.xml +554 -0
  79. data/test/fixtures/xml/library/artists-p7.xml +444 -0
  80. data/test/fixtures/xml/library/tracks-f30.xml +472 -0
  81. data/test/fixtures/xml/library/tracks-p1.xml +789 -0
  82. data/test/fixtures/xml/library/tracks-p10.xml +771 -0
  83. data/test/fixtures/xml/library/tracks-p11.xml +792 -0
  84. data/test/fixtures/xml/library/tracks-p12.xml +777 -0
  85. data/test/fixtures/xml/library/tracks-p13.xml +762 -0
  86. data/test/fixtures/xml/library/tracks-p14.xml +759 -0
  87. data/test/fixtures/xml/library/tracks-p15.xml +762 -0
  88. data/test/fixtures/xml/library/tracks-p16.xml +756 -0
  89. data/test/fixtures/xml/library/tracks-p17.xml +780 -0
  90. data/test/fixtures/xml/library/tracks-p18.xml +756 -0
  91. data/test/fixtures/xml/library/tracks-p19.xml +774 -0
  92. data/test/fixtures/xml/library/tracks-p2.xml +765 -0
  93. data/test/fixtures/xml/library/tracks-p20.xml +777 -0
  94. data/test/fixtures/xml/library/tracks-p21.xml +777 -0
  95. data/test/fixtures/xml/library/tracks-p22.xml +771 -0
  96. data/test/fixtures/xml/library/tracks-p23.xml +765 -0
  97. data/test/fixtures/xml/library/tracks-p24.xml +783 -0
  98. data/test/fixtures/xml/library/tracks-p25.xml +777 -0
  99. data/test/fixtures/xml/library/tracks-p26.xml +777 -0
  100. data/test/fixtures/xml/library/tracks-p27.xml +756 -0
  101. data/test/fixtures/xml/library/tracks-p28.xml +771 -0
  102. data/test/fixtures/xml/library/tracks-p29.xml +753 -0
  103. data/test/fixtures/xml/library/tracks-p3.xml +771 -0
  104. data/test/fixtures/xml/library/tracks-p30.xml +780 -0
  105. data/test/fixtures/xml/library/tracks-p31.xml +753 -0
  106. data/test/fixtures/xml/library/tracks-p32.xml +771 -0
  107. data/test/fixtures/xml/library/tracks-p33.xml +762 -0
  108. data/test/fixtures/xml/library/tracks-p34.xml +538 -0
  109. data/test/fixtures/xml/library/tracks-p4.xml +792 -0
  110. data/test/fixtures/xml/library/tracks-p5.xml +780 -0
  111. data/test/fixtures/xml/library/tracks-p6.xml +789 -0
  112. data/test/fixtures/xml/library/tracks-p7.xml +789 -0
  113. data/test/fixtures/xml/library/tracks-p8.xml +780 -0
  114. data/test/fixtures/xml/library/tracks-p9.xml +774 -0
  115. data/test/fixtures/xml/tag/similar.xml +254 -0
  116. data/test/fixtures/xml/tag/topalbums.xml +805 -0
  117. data/test/fixtures/xml/tag/topartists.xml +605 -0
  118. data/test/fixtures/xml/tag/toptags.xml +1254 -0
  119. data/test/fixtures/xml/tag/toptracks.xml +852 -0
  120. data/test/fixtures/xml/track/fans.xml +34 -0
  121. data/test/fixtures/xml/track/info.xml +53 -0
  122. data/test/fixtures/xml/track/toptags.xml +504 -0
  123. data/test/fixtures/xml/user/events.xml +401 -0
  124. data/test/fixtures/xml/user/friends.xml +30 -0
  125. data/test/fixtures/xml/user/lovedtracks.xml +678 -0
  126. data/test/fixtures/xml/user/neighbours.xml +23 -0
  127. data/test/fixtures/xml/user/playlists.xml +61 -0
  128. data/test/fixtures/xml/user/profile.xml +12 -0
  129. data/test/fixtures/xml/user/recentbannedtracks.xml +24 -0
  130. data/test/fixtures/xml/user/recentlovedtracks.xml +24 -0
  131. data/test/fixtures/xml/user/recenttracks.xml +124 -0
  132. data/test/fixtures/xml/user/systemrecs.xml +18 -0
  133. data/test/fixtures/xml/user/topalbums.xml +61 -0
  134. data/test/fixtures/xml/user/topartists.xml +41 -0
  135. data/test/fixtures/xml/user/toptags.xml +44 -0
  136. data/test/fixtures/xml/user/toptracks.xml +65 -0
  137. data/test/fixtures/xml/user/weeklyalbumchart.xml +256 -0
  138. data/test/fixtures/xml/user/weeklyartistchart.xml +220 -0
  139. data/test/fixtures/xml/user/weeklytrackchart.xml +746 -0
  140. data/test/fixtures/xml/venue/events.xml +151 -0
  141. data/test/fixtures/xml/venue/venue.xml +16 -0
  142. data/test/mocks/rest.rb +212 -0
  143. data/test/spec_helper.rb +7 -0
  144. data/test/test_helper.rb +20 -0
  145. data/test/unit/album_spec.rb +52 -0
  146. data/test/unit/artist_spec.rb +130 -0
  147. data/test/unit/auth_spec.rb +36 -0
  148. data/test/unit/event_spec.rb +109 -0
  149. data/test/unit/geo_spec.rb +148 -0
  150. data/test/unit/library_spec.rb +133 -0
  151. data/test/unit/playing_test.rb +53 -0
  152. data/test/unit/playlist_spec.rb +25 -0
  153. data/test/unit/radio_spec.rb +22 -0
  154. data/test/unit/scrobble_spec.rb +55 -0
  155. data/test/unit/scrobble_test.rb +69 -0
  156. data/test/unit/simpleauth_test.rb +45 -0
  157. data/test/unit/tag_spec.rb +101 -0
  158. data/test/unit/track_spec.rb +95 -0
  159. data/test/unit/user_spec.rb +264 -0
  160. data/test/unit/venue_spec.rb +104 -0
  161. metadata +265 -0
@@ -0,0 +1,777 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="20" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>Monsterparty</name>
6
+ <playcount>2</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Monsterparty</url>
10
+ <streamable fulltrack="0">1</streamable>
11
+ <artist>
12
+ <name>Die Ärzte</name>
13
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
14
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
15
+ </artist>
16
+ <image size="small">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
17
+ <image size="medium">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
18
+ <image size="large">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>To the End</name>
22
+ <playcount>2</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/Blur/_/To+the+End</url>
26
+ <streamable fulltrack="0">1</streamable>
27
+ <artist>
28
+ <name>Blur</name>
29
+ <mbid>ba853904-ae25-4ebb-89d6-c44cfbd71bd2</mbid>
30
+ <url>http://www.last.fm/music/Blur</url>
31
+ </artist>
32
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14257389.jpg</image>
33
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14257389.jpg</image>
34
+ <image size="large">http://userserve-ak.last.fm/serve/126/14257389.jpg</image>
35
+ </track>
36
+ <track>
37
+ <name>Mestizaje</name>
38
+ <playcount>2</playcount>
39
+ <tagcount></tagcount>
40
+ <mbid></mbid>
41
+ <url>http://www.last.fm/music/Ska-P/_/Mestizaje</url>
42
+ <streamable fulltrack="0">1</streamable>
43
+ <artist>
44
+ <name>Ska-P</name>
45
+ <mbid>2de794c8-8826-48d0-90e0-6900183ba9e0</mbid>
46
+ <url>http://www.last.fm/music/Ska-P</url>
47
+ </artist>
48
+ <image size="small">http://images.amazon.com/images/P/B000051TIT.01.MZZZZZZZ.jpg</image>
49
+ <image size="medium">http://images.amazon.com/images/P/B000051TIT.01.MZZZZZZZ.jpg</image>
50
+ <image size="large">http://images.amazon.com/images/P/B000051TIT.01.MZZZZZZZ.jpg</image>
51
+ </track>
52
+ <track>
53
+ <name>Erase/Replace</name>
54
+ <playcount>2</playcount>
55
+ <tagcount></tagcount>
56
+ <mbid></mbid>
57
+ <url>http://www.last.fm/music/Foo+Fighters/_/Erase%252FReplace</url>
58
+ <streamable fulltrack="0">1</streamable>
59
+ <artist>
60
+ <name>Foo Fighters</name>
61
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
62
+ <url>http://www.last.fm/music/Foo+Fighters</url>
63
+ </artist>
64
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23313761.jpg</image>
65
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23313761.jpg</image>
66
+ <image size="large">http://userserve-ak.last.fm/serve/126/23313761.jpg</image>
67
+ </track>
68
+ <track>
69
+ <name>Pretty Fly for White Guy</name>
70
+ <playcount>2</playcount>
71
+ <tagcount></tagcount>
72
+ <mbid></mbid>
73
+ <url>http://www.last.fm/music/The+Offspring/_/Pretty+Fly+for++White+Guy</url>
74
+ <streamable fulltrack="0">0</streamable>
75
+ <artist>
76
+ <name>The Offspring</name>
77
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
78
+ <url>http://www.last.fm/music/The+Offspring</url>
79
+ </artist>
80
+ </track>
81
+ <track>
82
+ <name>Bitte bitte</name>
83
+ <playcount>2</playcount>
84
+ <tagcount></tagcount>
85
+ <mbid></mbid>
86
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Bitte+bitte</url>
87
+ <streamable fulltrack="0">1</streamable>
88
+ <artist>
89
+ <name>Die Ärzte</name>
90
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
91
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
92
+ </artist>
93
+ <image size="small">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
94
+ <image size="medium">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
95
+ <image size="large">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
96
+ </track>
97
+ <track>
98
+ <name>Precious Time</name>
99
+ <playcount>2</playcount>
100
+ <tagcount></tagcount>
101
+ <mbid></mbid>
102
+ <url>http://www.last.fm/music/The+Maccabees/_/Precious+Time</url>
103
+ <streamable fulltrack="1">1</streamable>
104
+ <artist>
105
+ <name>The Maccabees</name>
106
+ <mbid>83b86967-6b1a-4ca8-9cf0-c7cfe047ef3f</mbid>
107
+ <url>http://www.last.fm/music/The+Maccabees</url>
108
+ </artist>
109
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10284487.jpg</image>
110
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10284487.jpg</image>
111
+ <image size="large">http://userserve-ak.last.fm/serve/126/10284487.jpg</image>
112
+ </track>
113
+ <track>
114
+ <name>Electric Feel (3/13/08 SXSW)</name>
115
+ <playcount>2</playcount>
116
+ <tagcount></tagcount>
117
+ <mbid></mbid>
118
+ <url>http://www.last.fm/music/MGMT/_/Electric%2BFeel%2B%25283%252F13%252F08%2BSXSW%2529</url>
119
+ <streamable fulltrack="0">0</streamable>
120
+ <artist>
121
+ <name>MGMT</name>
122
+ <mbid>c485632c-b784-4ee9-8ea1-c5fb365681fc</mbid>
123
+ <url>http://www.last.fm/music/MGMT</url>
124
+ </artist>
125
+ </track>
126
+ <track>
127
+ <name>Can't Wait to Quit</name>
128
+ <playcount>2</playcount>
129
+ <tagcount></tagcount>
130
+ <mbid></mbid>
131
+ <url>http://www.last.fm/music/Sick+of+It+All/_/Can%27t+Wait+to+Quit</url>
132
+ <streamable fulltrack="0">0</streamable>
133
+ <artist>
134
+ <name>Sick of It All</name>
135
+ <mbid>e204ed91-3684-4561-b29b-d0b53f8459a7</mbid>
136
+ <url>http://www.last.fm/music/Sick+of+It+All</url>
137
+ </artist>
138
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24063621.jpg</image>
139
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24063621.jpg</image>
140
+ <image size="large">http://userserve-ak.last.fm/serve/126/24063621.jpg</image>
141
+ </track>
142
+ <track>
143
+ <name>We Never Change</name>
144
+ <playcount>2</playcount>
145
+ <tagcount></tagcount>
146
+ <mbid></mbid>
147
+ <url>http://www.last.fm/music/Coldplay/_/We+Never+Change</url>
148
+ <streamable fulltrack="0">1</streamable>
149
+ <artist>
150
+ <name>Coldplay</name>
151
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
152
+ <url>http://www.last.fm/music/Coldplay</url>
153
+ </artist>
154
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14225619.jpg</image>
155
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14225619.jpg</image>
156
+ <image size="large">http://userserve-ak.last.fm/serve/126/14225619.jpg</image>
157
+ </track>
158
+ <track>
159
+ <name>Jungen Mädchen</name>
160
+ <playcount>2</playcount>
161
+ <tagcount></tagcount>
162
+ <mbid></mbid>
163
+ <url>http://www.last.fm/music/Hund+am+Strand/_/Jungen+M%C3%A4dchen</url>
164
+ <streamable fulltrack="0">0</streamable>
165
+ <artist>
166
+ <name>Hund am Strand</name>
167
+ <mbid>3c46699e-cccf-4897-84fb-25fb5b38975e</mbid>
168
+ <url>http://www.last.fm/music/Hund+am+Strand</url>
169
+ </artist>
170
+ <image size="small">http://images.amazon.com/images/P/B0009OO0SK.03.MZZZZZZZ.jpg</image>
171
+ <image size="medium">http://images.amazon.com/images/P/B0009OO0SK.03.MZZZZZZZ.jpg</image>
172
+ <image size="large">http://images.amazon.com/images/P/B0009OO0SK.03.MZZZZZZZ.jpg</image>
173
+ </track>
174
+ <track>
175
+ <name>Viel</name>
176
+ <playcount>2</playcount>
177
+ <tagcount></tagcount>
178
+ <mbid></mbid>
179
+ <url>http://www.last.fm/music/Die+Fantastischen+Vier/_/Viel</url>
180
+ <streamable fulltrack="0">1</streamable>
181
+ <artist>
182
+ <name>Die Fantastischen Vier</name>
183
+ <mbid>7928481f-848e-4551-b658-472c0aaf0c85</mbid>
184
+ <url>http://www.last.fm/music/Die+Fantastischen+Vier</url>
185
+ </artist>
186
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19560765.jpg</image>
187
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19560765.jpg</image>
188
+ <image size="large">http://userserve-ak.last.fm/serve/126/19560765.jpg</image>
189
+ </track>
190
+ <track>
191
+ <name>995er Tief über Island</name>
192
+ <playcount>2</playcount>
193
+ <tagcount></tagcount>
194
+ <mbid></mbid>
195
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/995er+Tief+%C3%BCber+Island</url>
196
+ <streamable fulltrack="1">1</streamable>
197
+ <artist>
198
+ <name>Sportfreunde Stiller</name>
199
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
200
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
201
+ </artist>
202
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10054959.jpg</image>
203
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10054959.jpg</image>
204
+ <image size="large">http://userserve-ak.last.fm/serve/126/10054959.jpg</image>
205
+ </track>
206
+ <track>
207
+ <name>Space Cowboy</name>
208
+ <playcount>2</playcount>
209
+ <tagcount></tagcount>
210
+ <mbid></mbid>
211
+ <url>http://www.last.fm/music/Scooter/_/Space+Cowboy</url>
212
+ <streamable fulltrack="0">0</streamable>
213
+ <artist>
214
+ <name>Scooter</name>
215
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
216
+ <url>http://www.last.fm/music/Scooter</url>
217
+ </artist>
218
+ <image size="small">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
219
+ <image size="medium">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
220
+ <image size="large">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
221
+ </track>
222
+ <track>
223
+ <name>The One</name>
224
+ <playcount>2</playcount>
225
+ <tagcount></tagcount>
226
+ <mbid></mbid>
227
+ <url>http://www.last.fm/music/Foo+Fighters/_/The+One</url>
228
+ <streamable fulltrack="0">0</streamable>
229
+ <artist>
230
+ <name>Foo Fighters</name>
231
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
232
+ <url>http://www.last.fm/music/Foo+Fighters</url>
233
+ </artist>
234
+ <image size="small">http://userserve-ak.last.fm/serve/34s/3777538.jpg</image>
235
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/3777538.jpg</image>
236
+ <image size="large">http://userserve-ak.last.fm/serve/126/3777538.jpg</image>
237
+ </track>
238
+ <track>
239
+ <name>Wind It Up</name>
240
+ <playcount>2</playcount>
241
+ <tagcount></tagcount>
242
+ <mbid></mbid>
243
+ <url>http://www.last.fm/music/The+Prodigy/_/Wind+It+Up</url>
244
+ <streamable fulltrack="0">0</streamable>
245
+ <artist>
246
+ <name>The Prodigy</name>
247
+ <mbid>4a4ee089-93b1-4470-af9a-6ff575d32704</mbid>
248
+ <url>http://www.last.fm/music/The+Prodigy</url>
249
+ </artist>
250
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12622005.jpg</image>
251
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12622005.jpg</image>
252
+ <image size="large">http://userserve-ak.last.fm/serve/126/12622005.jpg</image>
253
+ </track>
254
+ <track>
255
+ <name>Road Trippin'</name>
256
+ <playcount>2</playcount>
257
+ <tagcount></tagcount>
258
+ <mbid></mbid>
259
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers/_/Road+Trippin%27</url>
260
+ <streamable fulltrack="0">1</streamable>
261
+ <artist>
262
+ <name>Red Hot Chili Peppers</name>
263
+ <mbid>8bfac288-ccc5-448d-9573-c33ea2aa5c30</mbid>
264
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers</url>
265
+ </artist>
266
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593509.jpg</image>
267
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593509.jpg</image>
268
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593509.jpg</image>
269
+ </track>
270
+ <track>
271
+ <name>Yellow River</name>
272
+ <playcount>2</playcount>
273
+ <tagcount></tagcount>
274
+ <mbid></mbid>
275
+ <url>http://www.last.fm/music/Christie/_/Yellow+River</url>
276
+ <streamable fulltrack="0">1</streamable>
277
+ <artist>
278
+ <name>Christie</name>
279
+ <mbid>ecdfbb29-8e09-467e-a4cf-25a8d3d2d83b</mbid>
280
+ <url>http://www.last.fm/music/Christie</url>
281
+ </artist>
282
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19144057.jpg</image>
283
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19144057.jpg</image>
284
+ <image size="large">http://userserve-ak.last.fm/serve/126/19144057.jpg</image>
285
+ </track>
286
+ <track>
287
+ <name>The Tentefi</name>
288
+ <playcount>2</playcount>
289
+ <tagcount></tagcount>
290
+ <mbid></mbid>
291
+ <url>http://www.last.fm/music/Good+Charlotte/_/The+Tentefi</url>
292
+ <streamable fulltrack="0">0</streamable>
293
+ <artist>
294
+ <name>Good Charlotte</name>
295
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
296
+ <url>http://www.last.fm/music/Good+Charlotte</url>
297
+ </artist>
298
+ </track>
299
+ <track>
300
+ <name>Heartbeat</name>
301
+ <playcount>2</playcount>
302
+ <tagcount></tagcount>
303
+ <mbid></mbid>
304
+ <url>http://www.last.fm/music/Scouting+for+Girls/_/Heartbeat</url>
305
+ <streamable fulltrack="0">1</streamable>
306
+ <artist>
307
+ <name>Scouting for Girls</name>
308
+ <mbid></mbid>
309
+ <url>http://www.last.fm/music/Scouting+for+Girls</url>
310
+ </artist>
311
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23757539.jpg</image>
312
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23757539.jpg</image>
313
+ <image size="large">http://userserve-ak.last.fm/serve/126/23757539.jpg</image>
314
+ </track>
315
+ <track>
316
+ <name>Runaway</name>
317
+ <playcount>2</playcount>
318
+ <tagcount></tagcount>
319
+ <mbid></mbid>
320
+ <url>http://www.last.fm/music/P%21nk/_/Runaway</url>
321
+ <streamable fulltrack="0">0</streamable>
322
+ <artist>
323
+ <name>P!nk</name>
324
+ <mbid></mbid>
325
+ <url>http://www.last.fm/music/P%21nk</url>
326
+ </artist>
327
+ </track>
328
+ <track>
329
+ <name>Want</name>
330
+ <playcount>2</playcount>
331
+ <tagcount></tagcount>
332
+ <mbid></mbid>
333
+ <url>http://www.last.fm/music/Disturbed/_/Want</url>
334
+ <streamable fulltrack="0">1</streamable>
335
+ <artist>
336
+ <name>Disturbed</name>
337
+ <mbid>4bb4e4e4-5f66-4509-98af-62dbb90c45c5</mbid>
338
+ <url>http://www.last.fm/music/Disturbed</url>
339
+ </artist>
340
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634627.jpg</image>
341
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634627.jpg</image>
342
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634627.jpg</image>
343
+ </track>
344
+ <track>
345
+ <name>Da draussen</name>
346
+ <playcount>2</playcount>
347
+ <tagcount></tagcount>
348
+ <mbid></mbid>
349
+ <url>http://www.last.fm/music/Fettes+Brot/_/Da+draussen</url>
350
+ <streamable fulltrack="0">1</streamable>
351
+ <artist>
352
+ <name>Fettes Brot</name>
353
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
354
+ <url>http://www.last.fm/music/Fettes+Brot</url>
355
+ </artist>
356
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12621867.jpg</image>
357
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12621867.jpg</image>
358
+ <image size="large">http://userserve-ak.last.fm/serve/126/12621867.jpg</image>
359
+ </track>
360
+ <track>
361
+ <name>Bon Voyage (feat. Nina)</name>
362
+ <playcount>2</playcount>
363
+ <tagcount></tagcount>
364
+ <mbid></mbid>
365
+ <url>http://www.last.fm/music/Deichkind/_/Bon+Voyage+%28feat.+Nina%29</url>
366
+ <streamable fulltrack="0">0</streamable>
367
+ <artist>
368
+ <name>Deichkind</name>
369
+ <mbid>5de80871-f721-4c7c-b0c5-4ad0d350c232</mbid>
370
+ <url>http://www.last.fm/music/Deichkind</url>
371
+ </artist>
372
+ <image size="small">http://userserve-ak.last.fm/serve/34s/6454831.jpg</image>
373
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/6454831.jpg</image>
374
+ <image size="large">http://userserve-ak.last.fm/serve/126/6454831.jpg</image>
375
+ </track>
376
+ <track>
377
+ <name>Fahrt ins Grüne</name>
378
+ <playcount>2</playcount>
379
+ <tagcount></tagcount>
380
+ <mbid></mbid>
381
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Fahrt+ins+Gr%C3%BCne</url>
382
+ <streamable fulltrack="0">0</streamable>
383
+ <artist>
384
+ <name>Sportfreunde Stiller</name>
385
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
386
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
387
+ </artist>
388
+ <image size="small">http://images.amazon.com/images/P/B00005HZ05.03.MZZZZZZZ.jpg</image>
389
+ <image size="medium">http://images.amazon.com/images/P/B00005HZ05.03.MZZZZZZZ.jpg</image>
390
+ <image size="large">http://images.amazon.com/images/P/B00005HZ05.03.MZZZZZZZ.jpg</image>
391
+ </track>
392
+ <track>
393
+ <name>London Girl</name>
394
+ <playcount>2</playcount>
395
+ <tagcount></tagcount>
396
+ <mbid></mbid>
397
+ <url>http://www.last.fm/music/The+Pogues/_/London+Girl</url>
398
+ <streamable fulltrack="0">1</streamable>
399
+ <artist>
400
+ <name>The Pogues</name>
401
+ <mbid>d41a6875-b626-4c0f-89a1-aecb643d29ff</mbid>
402
+ <url>http://www.last.fm/music/The+Pogues</url>
403
+ </artist>
404
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24315671.jpg</image>
405
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24315671.jpg</image>
406
+ <image size="large">http://userserve-ak.last.fm/serve/126/24315671.jpg</image>
407
+ </track>
408
+ <track>
409
+ <name>She's the Sun</name>
410
+ <playcount>2</playcount>
411
+ <tagcount></tagcount>
412
+ <mbid></mbid>
413
+ <url>http://www.last.fm/music/Scooter/_/She%27s+the+Sun</url>
414
+ <streamable fulltrack="0">0</streamable>
415
+ <artist>
416
+ <name>Scooter</name>
417
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
418
+ <url>http://www.last.fm/music/Scooter</url>
419
+ </artist>
420
+ <image size="small">http://images.amazon.com/images/P/B00006SFDT.01.MZZZZZZZ.jpg</image>
421
+ <image size="medium">http://images.amazon.com/images/P/B00006SFDT.01.MZZZZZZZ.jpg</image>
422
+ <image size="large">http://images.amazon.com/images/P/B00006SFDT.01.MZZZZZZZ.jpg</image>
423
+ </track>
424
+ <track>
425
+ <name>Seecreds</name>
426
+ <playcount>2</playcount>
427
+ <tagcount></tagcount>
428
+ <mbid></mbid>
429
+ <url>http://www.last.fm/music/Good+Charlotte/_/Seecreds</url>
430
+ <streamable fulltrack="0">0</streamable>
431
+ <artist>
432
+ <name>Good Charlotte</name>
433
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
434
+ <url>http://www.last.fm/music/Good+Charlotte</url>
435
+ </artist>
436
+ </track>
437
+ <track>
438
+ <name>Zitroneneis</name>
439
+ <playcount>2</playcount>
440
+ <tagcount></tagcount>
441
+ <mbid></mbid>
442
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Zitroneneis</url>
443
+ <streamable fulltrack="0">1</streamable>
444
+ <artist>
445
+ <name>Die Ärzte</name>
446
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
447
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
448
+ </artist>
449
+ <image size="small">http://images.amazon.com/images/P/B000031X8H.01._SCMZZZZZZZ_.jpg</image>
450
+ <image size="medium">http://images.amazon.com/images/P/B000031X8H.01._SCMZZZZZZZ_.jpg</image>
451
+ <image size="large">http://images.amazon.com/images/P/B000031X8H.01._SCMZZZZZZZ_.jpg</image>
452
+ </track>
453
+ <track>
454
+ <name>I Want to Be the Boy to Warm Your Mother's Heart</name>
455
+ <playcount>2</playcount>
456
+ <tagcount></tagcount>
457
+ <mbid></mbid>
458
+ <url>http://www.last.fm/music/The+White+Stripes/_/I+Want+to+Be+the+Boy+to+Warm+Your+Mother%27s+Heart</url>
459
+ <streamable fulltrack="0">0</streamable>
460
+ <artist>
461
+ <name>The White Stripes</name>
462
+ <mbid>11ae9fbb-f3d7-4a47-936f-4c0a04d3b3b5</mbid>
463
+ <url>http://www.last.fm/music/The+White+Stripes</url>
464
+ </artist>
465
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8594965.jpg</image>
466
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8594965.jpg</image>
467
+ <image size="large">http://userserve-ak.last.fm/serve/126/8594965.jpg</image>
468
+ </track>
469
+ <track>
470
+ <name>She Moves in Her Own Way</name>
471
+ <playcount>2</playcount>
472
+ <tagcount></tagcount>
473
+ <mbid></mbid>
474
+ <url>http://www.last.fm/music/The+Kooks/_/She+Moves+in+Her+Own+Way</url>
475
+ <streamable fulltrack="0">1</streamable>
476
+ <artist>
477
+ <name>The Kooks</name>
478
+ <mbid>f82f3a3e-29c2-42ca-b589-bc5dc210fa9e</mbid>
479
+ <url>http://www.last.fm/music/The+Kooks</url>
480
+ </artist>
481
+ <image size="small">http://userserve-ak.last.fm/serve/34s/27156255.png</image>
482
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/27156255.png</image>
483
+ <image size="large">http://userserve-ak.last.fm/serve/126/27156255.png</image>
484
+ </track>
485
+ <track>
486
+ <name>Summerholidays Vs. Punkroutine</name>
487
+ <playcount>2</playcount>
488
+ <tagcount></tagcount>
489
+ <mbid></mbid>
490
+ <url>http://www.last.fm/music/Refused/_/Summerholidays+Vs.+Punkroutine</url>
491
+ <streamable fulltrack="0">1</streamable>
492
+ <artist>
493
+ <name>Refused</name>
494
+ <mbid>42884e27-dfb8-453d-990f-2ffd90bc2d1a</mbid>
495
+ <url>http://www.last.fm/music/Refused</url>
496
+ </artist>
497
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8596475.jpg</image>
498
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8596475.jpg</image>
499
+ <image size="large">http://userserve-ak.last.fm/serve/126/8596475.jpg</image>
500
+ </track>
501
+ <track>
502
+ <name>One I Love</name>
503
+ <playcount>2</playcount>
504
+ <tagcount></tagcount>
505
+ <mbid></mbid>
506
+ <url>http://www.last.fm/music/Coldplay/_/One+I+Love</url>
507
+ <streamable fulltrack="0">0</streamable>
508
+ <artist>
509
+ <name>Coldplay</name>
510
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
511
+ <url>http://www.last.fm/music/Coldplay</url>
512
+ </artist>
513
+ <image size="small">http://userserve-ak.last.fm/serve/34s/27153679.png</image>
514
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/27153679.png</image>
515
+ <image size="large">http://userserve-ak.last.fm/serve/126/27153679.png</image>
516
+ </track>
517
+ <track>
518
+ <name>Stranger Things Have Happened</name>
519
+ <playcount>2</playcount>
520
+ <tagcount></tagcount>
521
+ <mbid></mbid>
522
+ <url>http://www.last.fm/music/Foo+Fighters/_/Stranger+Things+Have+Happened</url>
523
+ <streamable fulltrack="0">1</streamable>
524
+ <artist>
525
+ <name>Foo Fighters</name>
526
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
527
+ <url>http://www.last.fm/music/Foo+Fighters</url>
528
+ </artist>
529
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23313761.jpg</image>
530
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23313761.jpg</image>
531
+ <image size="large">http://userserve-ak.last.fm/serve/126/23313761.jpg</image>
532
+ </track>
533
+ <track>
534
+ <name>Disco Sucks Fuck Everything</name>
535
+ <playcount>2</playcount>
536
+ <tagcount></tagcount>
537
+ <mbid></mbid>
538
+ <url>http://www.last.fm/music/Sick+of+It+All/_/Disco+Sucks+Fuck+Everything</url>
539
+ <streamable fulltrack="1">1</streamable>
540
+ <artist>
541
+ <name>Sick of It All</name>
542
+ <mbid>e204ed91-3684-4561-b29b-d0b53f8459a7</mbid>
543
+ <url>http://www.last.fm/music/Sick+of+It+All</url>
544
+ </artist>
545
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19879251.jpg</image>
546
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19879251.jpg</image>
547
+ <image size="large">http://userserve-ak.last.fm/serve/126/19879251.jpg</image>
548
+ </track>
549
+ <track>
550
+ <name>Im Raucherzimmer (Skit)</name>
551
+ <playcount>2</playcount>
552
+ <tagcount></tagcount>
553
+ <mbid></mbid>
554
+ <url>http://www.last.fm/music/Deichkind/_/Im+Raucherzimmer+%28Skit%29</url>
555
+ <streamable fulltrack="1">1</streamable>
556
+ <artist>
557
+ <name>Deichkind</name>
558
+ <mbid>5de80871-f721-4c7c-b0c5-4ad0d350c232</mbid>
559
+ <url>http://www.last.fm/music/Deichkind</url>
560
+ </artist>
561
+ </track>
562
+ <track>
563
+ <name>Leave Me Alone (I'm Lonely)</name>
564
+ <playcount>2</playcount>
565
+ <tagcount></tagcount>
566
+ <mbid></mbid>
567
+ <url>http://www.last.fm/music/P%21nk/_/Leave+Me+Alone+%28I%27m+Lonely%29</url>
568
+ <streamable fulltrack="0">0</streamable>
569
+ <artist>
570
+ <name>P!nk</name>
571
+ <mbid></mbid>
572
+ <url>http://www.last.fm/music/P%21nk</url>
573
+ </artist>
574
+ </track>
575
+ <track>
576
+ <name>White Light</name>
577
+ <playcount>2</playcount>
578
+ <tagcount></tagcount>
579
+ <mbid></mbid>
580
+ <url>http://www.last.fm/music/Gorillaz/_/White+Light</url>
581
+ <streamable fulltrack="0">1</streamable>
582
+ <artist>
583
+ <name>Gorillaz</name>
584
+ <mbid>e21857d5-3256-4547-afb3-4b6ded592596</mbid>
585
+ <url>http://www.last.fm/music/Gorillaz</url>
586
+ </artist>
587
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11453045.jpg</image>
588
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11453045.jpg</image>
589
+ <image size="large">http://userserve-ak.last.fm/serve/126/11453045.jpg</image>
590
+ </track>
591
+ <track>
592
+ <name>Let It Die</name>
593
+ <playcount>2</playcount>
594
+ <tagcount></tagcount>
595
+ <mbid></mbid>
596
+ <url>http://www.last.fm/music/Foo+Fighters/_/Let+It+Die</url>
597
+ <streamable fulltrack="0">1</streamable>
598
+ <artist>
599
+ <name>Foo Fighters</name>
600
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
601
+ <url>http://www.last.fm/music/Foo+Fighters</url>
602
+ </artist>
603
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23313761.jpg</image>
604
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23313761.jpg</image>
605
+ <image size="large">http://userserve-ak.last.fm/serve/126/23313761.jpg</image>
606
+ </track>
607
+ <track>
608
+ <name>Once Upon a Time: The Battle of Life and Death</name>
609
+ <playcount>2</playcount>
610
+ <tagcount></tagcount>
611
+ <mbid></mbid>
612
+ <url>http://www.last.fm/music/Good+Charlotte/_/Once+Upon+a+Time%3A+The+Battle+of+Life+and+Death</url>
613
+ <streamable fulltrack="0">1</streamable>
614
+ <artist>
615
+ <name>Good Charlotte</name>
616
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
617
+ <url>http://www.last.fm/music/Good+Charlotte</url>
618
+ </artist>
619
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19691425.jpg</image>
620
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19691425.jpg</image>
621
+ <image size="large">http://userserve-ak.last.fm/serve/126/19691425.jpg</image>
622
+ </track>
623
+ <track>
624
+ <name>Crawling (Album Version)</name>
625
+ <playcount>2</playcount>
626
+ <tagcount></tagcount>
627
+ <mbid></mbid>
628
+ <url>http://www.last.fm/music/Linkin+Park/_/Crawling+%28Album+Version%29</url>
629
+ <streamable fulltrack="0">0</streamable>
630
+ <artist>
631
+ <name>Linkin Park</name>
632
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
633
+ <url>http://www.last.fm/music/Linkin+Park</url>
634
+ </artist>
635
+ </track>
636
+ <track>
637
+ <name>Deutsche kauft nicht bei Nazis</name>
638
+ <playcount>2</playcount>
639
+ <tagcount></tagcount>
640
+ <mbid></mbid>
641
+ <url>http://www.last.fm/music/Bela+B./_/Deutsche+kauft+nicht+bei+Nazis</url>
642
+ <streamable fulltrack="0">0</streamable>
643
+ <artist>
644
+ <name>Bela B.</name>
645
+ <mbid>85773020-07a1-46a4-8436-cc7ae8bf698f</mbid>
646
+ <url>http://www.last.fm/music/Bela+B.</url>
647
+ </artist>
648
+ </track>
649
+ <track>
650
+ <name>Nobody's Listening</name>
651
+ <playcount>2</playcount>
652
+ <tagcount></tagcount>
653
+ <mbid></mbid>
654
+ <url>http://www.last.fm/music/Linkin+Park/_/Nobody%27s+Listening</url>
655
+ <streamable fulltrack="0">1</streamable>
656
+ <artist>
657
+ <name>Linkin Park</name>
658
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
659
+ <url>http://www.last.fm/music/Linkin+Park</url>
660
+ </artist>
661
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8641895.jpg</image>
662
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8641895.jpg</image>
663
+ <image size="large">http://userserve-ak.last.fm/serve/126/8641895.jpg</image>
664
+ </track>
665
+ <track>
666
+ <name>In My Head</name>
667
+ <playcount>2</playcount>
668
+ <tagcount></tagcount>
669
+ <mbid></mbid>
670
+ <url>http://www.last.fm/music/Queens+of+the+Stone+Age/_/In+My+Head</url>
671
+ <streamable fulltrack="0">0</streamable>
672
+ <artist>
673
+ <name>Queens of the Stone Age</name>
674
+ <mbid>7dc8f5bd-9d0b-4087-9f73-dc164950bbd8</mbid>
675
+ <url>http://www.last.fm/music/Queens+of+the+Stone+Age</url>
676
+ </artist>
677
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8676257.jpg</image>
678
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8676257.jpg</image>
679
+ <image size="large">http://userserve-ak.last.fm/serve/126/8676257.jpg</image>
680
+ </track>
681
+ <track>
682
+ <name>I'm Always Right</name>
683
+ <playcount>2</playcount>
684
+ <tagcount></tagcount>
685
+ <mbid></mbid>
686
+ <url>http://www.last.fm/music/The+Pigeon+Detectives/_/I%27m+Always+Right</url>
687
+ <streamable fulltrack="1">1</streamable>
688
+ <artist>
689
+ <name>The Pigeon Detectives</name>
690
+ <mbid>2e04a82f-9118-43b1-a918-bf84f122f7fc</mbid>
691
+ <url>http://www.last.fm/music/The+Pigeon+Detectives</url>
692
+ </artist>
693
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15225423.jpg</image>
694
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15225423.jpg</image>
695
+ <image size="large">http://userserve-ak.last.fm/serve/126/15225423.jpg</image>
696
+ </track>
697
+ <track>
698
+ <name>The Coast Is Always Changing</name>
699
+ <playcount>2</playcount>
700
+ <tagcount></tagcount>
701
+ <mbid></mbid>
702
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park/_/The+Coast+Is+Always+Changing</url>
703
+ <streamable fulltrack="0">1</streamable>
704
+ <artist>
705
+ <name>Maxïmo Park</name>
706
+ <mbid>92e634a7-6023-4be8-be15-ebba822f5b34</mbid>
707
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park</url>
708
+ </artist>
709
+ <image size="small">http://images.amazon.com/images/P/B00094OBX4.01.MZZZZZZZ.jpg</image>
710
+ <image size="medium">http://images.amazon.com/images/P/B00094OBX4.01.MZZZZZZZ.jpg</image>
711
+ <image size="large">http://images.amazon.com/images/P/B00094OBX4.01.MZZZZZZZ.jpg</image>
712
+ </track>
713
+ <track>
714
+ <name>St. Jimmy</name>
715
+ <playcount>2</playcount>
716
+ <tagcount></tagcount>
717
+ <mbid></mbid>
718
+ <url>http://www.last.fm/music/Green+Day/_/St.+Jimmy</url>
719
+ <streamable fulltrack="0">1</streamable>
720
+ <artist>
721
+ <name>Green Day</name>
722
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
723
+ <url>http://www.last.fm/music/Green+Day</url>
724
+ </artist>
725
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5083839.jpg</image>
726
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5083839.jpg</image>
727
+ <image size="large">http://userserve-ak.last.fm/serve/126/5083839.jpg</image>
728
+ </track>
729
+ <track>
730
+ <name>Der Graf</name>
731
+ <playcount>2</playcount>
732
+ <tagcount></tagcount>
733
+ <mbid></mbid>
734
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Der+Graf</url>
735
+ <streamable fulltrack="0">1</streamable>
736
+ <artist>
737
+ <name>Die Ärzte</name>
738
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
739
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
740
+ </artist>
741
+ <image size="small">http://images-eu.amazon.com/images/P/B00000JP3Y.03.MZZZZZZZ.jpg</image>
742
+ <image size="medium">http://images-eu.amazon.com/images/P/B00000JP3Y.03.MZZZZZZZ.jpg</image>
743
+ <image size="large">http://images-eu.amazon.com/images/P/B00000JP3Y.03.MZZZZZZZ.jpg</image>
744
+ </track>
745
+ <track>
746
+ <name>Predictable</name>
747
+ <playcount>2</playcount>
748
+ <tagcount></tagcount>
749
+ <mbid></mbid>
750
+ <url>http://www.last.fm/music/Good+Charlotte/_/Predictable</url>
751
+ <streamable fulltrack="0">1</streamable>
752
+ <artist>
753
+ <name>Good Charlotte</name>
754
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
755
+ <url>http://www.last.fm/music/Good+Charlotte</url>
756
+ </artist>
757
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19445721.jpg</image>
758
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19445721.jpg</image>
759
+ <image size="large">http://userserve-ak.last.fm/serve/126/19445721.jpg</image>
760
+ </track>
761
+ <track>
762
+ <name>Poor Cow</name>
763
+ <playcount>2</playcount>
764
+ <tagcount></tagcount>
765
+ <mbid></mbid>
766
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John/_/Poor+Cow</url>
767
+ <streamable fulltrack="0">1</streamable>
768
+ <artist>
769
+ <name>Peter Bjorn and John</name>
770
+ <mbid>32a83250-7e26-422d-b9ac-f4564343e9ce</mbid>
771
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John</url>
772
+ </artist>
773
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19754455.jpg</image>
774
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19754455.jpg</image>
775
+ <image size="large">http://userserve-ak.last.fm/serve/126/19754455.jpg</image>
776
+ </track>
777
+ </tracks></lfm>