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,756 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="16" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>Sink, Florida, Sink (Electric)</name>
6
+ <playcount>3</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Against+Me%21/_/Sink%2C+Florida%2C+Sink+%28Electric%29</url>
10
+ <streamable fulltrack="0">0</streamable>
11
+ <artist>
12
+ <name>Against Me!</name>
13
+ <mbid>a66ebddc-ff04-46b8-820a-15c63e80dba1</mbid>
14
+ <url>http://www.last.fm/music/Against+Me%21</url>
15
+ </artist>
16
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5885811.jpg</image>
17
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5885811.jpg</image>
18
+ <image size="large">http://userserve-ak.last.fm/serve/126/5885811.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>Yes / Chinese Sleep Chant</name>
22
+ <playcount>3</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/Coldplay/_/Yes%2B%252F%2BChinese%2BSleep%2BChant</url>
26
+ <streamable fulltrack="0">0</streamable>
27
+ <artist>
28
+ <name>Coldplay</name>
29
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
30
+ <url>http://www.last.fm/music/Coldplay</url>
31
+ </artist>
32
+ </track>
33
+ <track>
34
+ <name>Die Zeit heilt alle Wunder</name>
35
+ <playcount>3</playcount>
36
+ <tagcount></tagcount>
37
+ <mbid></mbid>
38
+ <url>http://www.last.fm/music/Wir+sind+Helden/_/Die+Zeit+heilt+alle+Wunder</url>
39
+ <streamable fulltrack="0">1</streamable>
40
+ <artist>
41
+ <name>Wir sind Helden</name>
42
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
43
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
44
+ </artist>
45
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15183527.jpg</image>
46
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15183527.jpg</image>
47
+ <image size="large">http://userserve-ak.last.fm/serve/126/15183527.jpg</image>
48
+ </track>
49
+ <track>
50
+ <name>Everlong</name>
51
+ <playcount>3</playcount>
52
+ <tagcount></tagcount>
53
+ <mbid></mbid>
54
+ <url>http://www.last.fm/music/Foo+Fighters/_/Everlong</url>
55
+ <streamable fulltrack="0">1</streamable>
56
+ <artist>
57
+ <name>Foo Fighters</name>
58
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
59
+ <url>http://www.last.fm/music/Foo+Fighters</url>
60
+ </artist>
61
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23755807.jpg</image>
62
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23755807.jpg</image>
63
+ <image size="large">http://userserve-ak.last.fm/serve/126/23755807.jpg</image>
64
+ </track>
65
+ <track>
66
+ <name>Titel 05</name>
67
+ <playcount>3</playcount>
68
+ <tagcount></tagcount>
69
+ <mbid></mbid>
70
+ <url>http://www.last.fm/music/Scooter/_/Titel+05</url>
71
+ <streamable fulltrack="0">0</streamable>
72
+ <artist>
73
+ <name>Scooter</name>
74
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
75
+ <url>http://www.last.fm/music/Scooter</url>
76
+ </artist>
77
+ </track>
78
+ <track>
79
+ <name>Sugar, We're Goin' Down</name>
80
+ <playcount>3</playcount>
81
+ <tagcount></tagcount>
82
+ <mbid></mbid>
83
+ <url>http://www.last.fm/music/Fall+Out+Boy/_/Sugar%2C+We%27re+Goin%27+Down</url>
84
+ <streamable fulltrack="0">0</streamable>
85
+ <artist>
86
+ <name>Fall Out Boy</name>
87
+ <mbid>516cef4d-0718-4007-9939-f9b38af3f784</mbid>
88
+ <url>http://www.last.fm/music/Fall+Out+Boy</url>
89
+ </artist>
90
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
91
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
92
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
93
+ </track>
94
+ <track>
95
+ <name>New Day</name>
96
+ <playcount>3</playcount>
97
+ <tagcount></tagcount>
98
+ <mbid></mbid>
99
+ <url>http://www.last.fm/music/Gentleman/_/New+Day</url>
100
+ <streamable fulltrack="0">1</streamable>
101
+ <artist>
102
+ <name>Gentleman</name>
103
+ <mbid>8de4a831-7c25-4d34-90cf-254de0c36e49</mbid>
104
+ <url>http://www.last.fm/music/Gentleman</url>
105
+ </artist>
106
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28019385.jpg</image>
107
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28019385.jpg</image>
108
+ <image size="large">http://userserve-ak.last.fm/serve/126/28019385.jpg</image>
109
+ </track>
110
+ <track>
111
+ <name>Zucker (Feat. Vanessa Mason)</name>
112
+ <playcount>3</playcount>
113
+ <tagcount></tagcount>
114
+ <mbid></mbid>
115
+ <url>http://www.last.fm/music/Peter+Fox/_/Zucker+%28Feat.+Vanessa+Mason%29</url>
116
+ <streamable fulltrack="0">0</streamable>
117
+ <artist>
118
+ <name>Peter Fox</name>
119
+ <mbid></mbid>
120
+ <url>http://www.last.fm/music/Peter+Fox</url>
121
+ </artist>
122
+ </track>
123
+ <track>
124
+ <name>Warning Sign</name>
125
+ <playcount>3</playcount>
126
+ <tagcount></tagcount>
127
+ <mbid></mbid>
128
+ <url>http://www.last.fm/music/Coldplay/_/Warning+Sign</url>
129
+ <streamable fulltrack="0">1</streamable>
130
+ <artist>
131
+ <name>Coldplay</name>
132
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
133
+ <url>http://www.last.fm/music/Coldplay</url>
134
+ </artist>
135
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14245401.jpg</image>
136
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14245401.jpg</image>
137
+ <image size="large">http://userserve-ak.last.fm/serve/126/14245401.jpg</image>
138
+ </track>
139
+ <track>
140
+ <name>Outsiders</name>
141
+ <playcount>3</playcount>
142
+ <tagcount></tagcount>
143
+ <mbid></mbid>
144
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/Outsiders</url>
145
+ <streamable fulltrack="0">1</streamable>
146
+ <artist>
147
+ <name>Franz Ferdinand</name>
148
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
149
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
150
+ </artist>
151
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19883723.jpg</image>
152
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19883723.jpg</image>
153
+ <image size="large">http://userserve-ak.last.fm/serve/126/19883723.jpg</image>
154
+ </track>
155
+ <track>
156
+ <name>Signal and Sign</name>
157
+ <playcount>3</playcount>
158
+ <tagcount></tagcount>
159
+ <mbid></mbid>
160
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park/_/Signal+and+Sign</url>
161
+ <streamable fulltrack="0">1</streamable>
162
+ <artist>
163
+ <name>Maxïmo Park</name>
164
+ <mbid>92e634a7-6023-4be8-be15-ebba822f5b34</mbid>
165
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park</url>
166
+ </artist>
167
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15267909.jpg</image>
168
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15267909.jpg</image>
169
+ <image size="large">http://userserve-ak.last.fm/serve/126/15267909.jpg</image>
170
+ </track>
171
+ <track>
172
+ <name>Titel 03</name>
173
+ <playcount>3</playcount>
174
+ <tagcount></tagcount>
175
+ <mbid></mbid>
176
+ <url>http://www.last.fm/music/Scooter/_/Titel+03</url>
177
+ <streamable fulltrack="0">0</streamable>
178
+ <artist>
179
+ <name>Scooter</name>
180
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
181
+ <url>http://www.last.fm/music/Scooter</url>
182
+ </artist>
183
+ </track>
184
+ <track>
185
+ <name>Cry for Help</name>
186
+ <playcount>3</playcount>
187
+ <tagcount></tagcount>
188
+ <mbid></mbid>
189
+ <url>http://www.last.fm/music/Sick+of+It+All/_/Cry+for+Help</url>
190
+ <streamable fulltrack="0">1</streamable>
191
+ <artist>
192
+ <name>Sick of It All</name>
193
+ <mbid>e204ed91-3684-4561-b29b-d0b53f8459a7</mbid>
194
+ <url>http://www.last.fm/music/Sick+of+It+All</url>
195
+ </artist>
196
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19879251.jpg</image>
197
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19879251.jpg</image>
198
+ <image size="large">http://userserve-ak.last.fm/serve/126/19879251.jpg</image>
199
+ </track>
200
+ <track>
201
+ <name>Whatever Happened to the 80s</name>
202
+ <playcount>3</playcount>
203
+ <tagcount></tagcount>
204
+ <mbid></mbid>
205
+ <url>http://www.last.fm/music/Donots/_/Whatever+Happened+to+the+80s</url>
206
+ <streamable fulltrack="0">1</streamable>
207
+ <artist>
208
+ <name>Donots</name>
209
+ <mbid>06a4a555-1b69-4175-83df-2528a8e5af05</mbid>
210
+ <url>http://www.last.fm/music/Donots</url>
211
+ </artist>
212
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11842759.jpg</image>
213
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11842759.jpg</image>
214
+ <image size="large">http://userserve-ak.last.fm/serve/126/11842759.jpg</image>
215
+ </track>
216
+ <track>
217
+ <name>Fairytale Of New York (With Kirsty MacColl)</name>
218
+ <playcount>3</playcount>
219
+ <tagcount></tagcount>
220
+ <mbid></mbid>
221
+ <url>http://www.last.fm/music/The+Pogues/_/Fairytale+Of+New+York+%28With+Kirsty+MacColl%29</url>
222
+ <streamable fulltrack="0">0</streamable>
223
+ <artist>
224
+ <name>The Pogues</name>
225
+ <mbid>d41a6875-b626-4c0f-89a1-aecb643d29ff</mbid>
226
+ <url>http://www.last.fm/music/The+Pogues</url>
227
+ </artist>
228
+ </track>
229
+ <track>
230
+ <name>Session</name>
231
+ <playcount>3</playcount>
232
+ <tagcount></tagcount>
233
+ <mbid></mbid>
234
+ <url>http://www.last.fm/music/Linkin+Park/_/Session</url>
235
+ <streamable fulltrack="0">1</streamable>
236
+ <artist>
237
+ <name>Linkin Park</name>
238
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
239
+ <url>http://www.last.fm/music/Linkin+Park</url>
240
+ </artist>
241
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8641895.jpg</image>
242
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8641895.jpg</image>
243
+ <image size="large">http://userserve-ak.last.fm/serve/126/8641895.jpg</image>
244
+ </track>
245
+ <track>
246
+ <name>Helicopter 2005</name>
247
+ <playcount>3</playcount>
248
+ <tagcount></tagcount>
249
+ <mbid></mbid>
250
+ <url>http://www.last.fm/music/Bloc+Party/_/Helicopter+2005</url>
251
+ <streamable fulltrack="0">0</streamable>
252
+ <artist>
253
+ <name>Bloc Party</name>
254
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
255
+ <url>http://www.last.fm/music/Bloc+Party</url>
256
+ </artist>
257
+ </track>
258
+ <track>
259
+ <name>From the Inside (live)</name>
260
+ <playcount>3</playcount>
261
+ <tagcount></tagcount>
262
+ <mbid></mbid>
263
+ <url>http://www.last.fm/music/Linkin+Park/_/From+the+Inside+%28live%29</url>
264
+ <streamable fulltrack="0">0</streamable>
265
+ <artist>
266
+ <name>Linkin Park</name>
267
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
268
+ <url>http://www.last.fm/music/Linkin+Park</url>
269
+ </artist>
270
+ <image size="small">http://images.amazon.com/images/P/B0001500KY.01._SCMZZZZZZZ_.jpg</image>
271
+ <image size="medium">http://images.amazon.com/images/P/B0001500KY.01._SCMZZZZZZZ_.jpg</image>
272
+ <image size="large">http://images.amazon.com/images/P/B0001500KY.01._SCMZZZZZZZ_.jpg</image>
273
+ </track>
274
+ <track>
275
+ <name>Pardon Me</name>
276
+ <playcount>3</playcount>
277
+ <tagcount></tagcount>
278
+ <mbid></mbid>
279
+ <url>http://www.last.fm/music/Weezer/_/Pardon+Me</url>
280
+ <streamable fulltrack="1">1</streamable>
281
+ <artist>
282
+ <name>Weezer</name>
283
+ <mbid>6fe07aa5-fec0-4eca-a456-f29bff451b04</mbid>
284
+ <url>http://www.last.fm/music/Weezer</url>
285
+ </artist>
286
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8673675.jpg</image>
287
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8673675.jpg</image>
288
+ <image size="large">http://userserve-ak.last.fm/serve/126/8673675.jpg</image>
289
+ </track>
290
+ <track>
291
+ <name>Something in the Way</name>
292
+ <playcount>3</playcount>
293
+ <tagcount></tagcount>
294
+ <mbid></mbid>
295
+ <url>http://www.last.fm/music/Nirvana/_/Something+in+the+Way</url>
296
+ <streamable fulltrack="1">1</streamable>
297
+ <artist>
298
+ <name>Nirvana</name>
299
+ <mbid>5b11f4ce-a62d-471e-81fc-a69a8278c7da</mbid>
300
+ <url>http://www.last.fm/music/Nirvana</url>
301
+ </artist>
302
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8590151.jpg</image>
303
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8590151.jpg</image>
304
+ <image size="large">http://userserve-ak.last.fm/serve/126/8590151.jpg</image>
305
+ </track>
306
+ <track>
307
+ <name>Runaway (Live)</name>
308
+ <playcount>3</playcount>
309
+ <tagcount></tagcount>
310
+ <mbid></mbid>
311
+ <url>http://www.last.fm/music/Gentleman/_/Runaway+%28Live%29</url>
312
+ <streamable fulltrack="0">0</streamable>
313
+ <artist>
314
+ <name>Gentleman</name>
315
+ <mbid>8de4a831-7c25-4d34-90cf-254de0c36e49</mbid>
316
+ <url>http://www.last.fm/music/Gentleman</url>
317
+ </artist>
318
+ </track>
319
+ <track>
320
+ <name>Objects of My Affection</name>
321
+ <playcount>3</playcount>
322
+ <tagcount></tagcount>
323
+ <mbid></mbid>
324
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John/_/Objects+of+My+Affection</url>
325
+ <streamable fulltrack="0">1</streamable>
326
+ <artist>
327
+ <name>Peter Bjorn and John</name>
328
+ <mbid>32a83250-7e26-422d-b9ac-f4564343e9ce</mbid>
329
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John</url>
330
+ </artist>
331
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19754455.jpg</image>
332
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19754455.jpg</image>
333
+ <image size="large">http://userserve-ak.last.fm/serve/126/19754455.jpg</image>
334
+ </track>
335
+ <track>
336
+ <name>Pure Vernunft darf niemals siegen</name>
337
+ <playcount>3</playcount>
338
+ <tagcount></tagcount>
339
+ <mbid></mbid>
340
+ <url>http://www.last.fm/music/Tocotronic/_/Pure+Vernunft+darf+niemals+siegen</url>
341
+ <streamable fulltrack="0">1</streamable>
342
+ <artist>
343
+ <name>Tocotronic</name>
344
+ <mbid>7717539b-33aa-45d5-b88d-9e627172db19</mbid>
345
+ <url>http://www.last.fm/music/Tocotronic</url>
346
+ </artist>
347
+ <image size="small">http://userserve-ak.last.fm/serve/34s/20326651.jpg</image>
348
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/20326651.jpg</image>
349
+ <image size="large">http://userserve-ak.last.fm/serve/126/20326651.jpg</image>
350
+ </track>
351
+ <track>
352
+ <name>Nothing to Do When You're Locked in a Vacancy</name>
353
+ <playcount>3</playcount>
354
+ <tagcount></tagcount>
355
+ <mbid></mbid>
356
+ <url>http://www.last.fm/music/None+More+Black/_/Nothing+to+Do+When+You%27re+Locked+in+a+Vacancy</url>
357
+ <streamable fulltrack="0">0</streamable>
358
+ <artist>
359
+ <name>None More Black</name>
360
+ <mbid>a1f28c75-e6aa-4d63-9b01-3be42c599fab</mbid>
361
+ <url>http://www.last.fm/music/None+More+Black</url>
362
+ </artist>
363
+ <image size="small">http://images.amazon.com/images/P/B0001WPSM2.01.MZZZZZZZ.jpg</image>
364
+ <image size="medium">http://images.amazon.com/images/P/B0001WPSM2.01.MZZZZZZZ.jpg</image>
365
+ <image size="large">http://images.amazon.com/images/P/B0001WPSM2.01.MZZZZZZZ.jpg</image>
366
+ </track>
367
+ <track>
368
+ <name>Figure.09</name>
369
+ <playcount>3</playcount>
370
+ <tagcount></tagcount>
371
+ <mbid></mbid>
372
+ <url>http://www.last.fm/music/Linkin+Park/_/Figure.09</url>
373
+ <streamable fulltrack="0">1</streamable>
374
+ <artist>
375
+ <name>Linkin Park</name>
376
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
377
+ <url>http://www.last.fm/music/Linkin+Park</url>
378
+ </artist>
379
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8641895.jpg</image>
380
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8641895.jpg</image>
381
+ <image size="large">http://userserve-ak.last.fm/serve/126/8641895.jpg</image>
382
+ </track>
383
+ <track>
384
+ <name>Titel 10</name>
385
+ <playcount>3</playcount>
386
+ <tagcount></tagcount>
387
+ <mbid></mbid>
388
+ <url>http://www.last.fm/music/Scooter/_/Titel+10</url>
389
+ <streamable fulltrack="0">0</streamable>
390
+ <artist>
391
+ <name>Scooter</name>
392
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
393
+ <url>http://www.last.fm/music/Scooter</url>
394
+ </artist>
395
+ </track>
396
+ <track>
397
+ <name>Lying From You (Live)</name>
398
+ <playcount>3</playcount>
399
+ <tagcount></tagcount>
400
+ <mbid></mbid>
401
+ <url>http://www.last.fm/music/Linkin+Park/_/Lying+From+You+%28Live%29</url>
402
+ <streamable fulltrack="0">0</streamable>
403
+ <artist>
404
+ <name>Linkin Park</name>
405
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
406
+ <url>http://www.last.fm/music/Linkin+Park</url>
407
+ </artist>
408
+ </track>
409
+ <track>
410
+ <name>Titel 06</name>
411
+ <playcount>3</playcount>
412
+ <tagcount></tagcount>
413
+ <mbid></mbid>
414
+ <url>http://www.last.fm/music/Scooter/_/Titel+06</url>
415
+ <streamable fulltrack="0">0</streamable>
416
+ <artist>
417
+ <name>Scooter</name>
418
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
419
+ <url>http://www.last.fm/music/Scooter</url>
420
+ </artist>
421
+ </track>
422
+ <track>
423
+ <name>Never Slow Down</name>
424
+ <playcount>3</playcount>
425
+ <tagcount></tagcount>
426
+ <mbid></mbid>
427
+ <url>http://www.last.fm/music/Scooter/_/Never+Slow+Down</url>
428
+ <streamable fulltrack="0">0</streamable>
429
+ <artist>
430
+ <name>Scooter</name>
431
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
432
+ <url>http://www.last.fm/music/Scooter</url>
433
+ </artist>
434
+ <image size="small">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
435
+ <image size="medium">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
436
+ <image size="large">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
437
+ </track>
438
+ <track>
439
+ <name>Death And All His Friends / The Escapist</name>
440
+ <playcount>3</playcount>
441
+ <tagcount></tagcount>
442
+ <mbid></mbid>
443
+ <url>http://www.last.fm/music/Coldplay/_/Death%2BAnd%2BAll%2BHis%2BFriends%2B%252F%2BThe%2BEscapist</url>
444
+ <streamable fulltrack="0">0</streamable>
445
+ <artist>
446
+ <name>Coldplay</name>
447
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
448
+ <url>http://www.last.fm/music/Coldplay</url>
449
+ </artist>
450
+ </track>
451
+ <track>
452
+ <name>Beverly Hills</name>
453
+ <playcount>3</playcount>
454
+ <tagcount></tagcount>
455
+ <mbid></mbid>
456
+ <url>http://www.last.fm/music/Weezer/_/Beverly+Hills</url>
457
+ <streamable fulltrack="1">1</streamable>
458
+ <artist>
459
+ <name>Weezer</name>
460
+ <mbid>6fe07aa5-fec0-4eca-a456-f29bff451b04</mbid>
461
+ <url>http://www.last.fm/music/Weezer</url>
462
+ </artist>
463
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8673675.jpg</image>
464
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8673675.jpg</image>
465
+ <image size="large">http://userserve-ak.last.fm/serve/126/8673675.jpg</image>
466
+ </track>
467
+ <track>
468
+ <name>Stadtaffe</name>
469
+ <playcount>3</playcount>
470
+ <tagcount></tagcount>
471
+ <mbid></mbid>
472
+ <url>http://www.last.fm/music/Peter+Fox/_/Stadtaffe</url>
473
+ <streamable fulltrack="0">0</streamable>
474
+ <artist>
475
+ <name>Peter Fox</name>
476
+ <mbid></mbid>
477
+ <url>http://www.last.fm/music/Peter+Fox</url>
478
+ </artist>
479
+ </track>
480
+ <track>
481
+ <name>Got My Favourite...</name>
482
+ <playcount>3</playcount>
483
+ <tagcount></tagcount>
484
+ <mbid></mbid>
485
+ <url>http://www.last.fm/music/Jack+Pe%C3%B1ate/_/Got+My+Favourite...</url>
486
+ <streamable fulltrack="0">0</streamable>
487
+ <artist>
488
+ <name>Jack Peñate</name>
489
+ <mbid>9b64cf5d-1f4a-45b5-a84a-5109a88f178f</mbid>
490
+ <url>http://www.last.fm/music/Jack+Pe%C3%B1ate</url>
491
+ </artist>
492
+ </track>
493
+ <track>
494
+ <name>The World We Live In</name>
495
+ <playcount>3</playcount>
496
+ <tagcount></tagcount>
497
+ <mbid></mbid>
498
+ <url>http://www.last.fm/music/The+Killers/_/The+World+We+Live+In</url>
499
+ <streamable fulltrack="1">1</streamable>
500
+ <artist>
501
+ <name>The Killers</name>
502
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
503
+ <url>http://www.last.fm/music/The+Killers</url>
504
+ </artist>
505
+ </track>
506
+ <track>
507
+ <name>Long Before Rock 'n' Roll</name>
508
+ <playcount>3</playcount>
509
+ <tagcount></tagcount>
510
+ <mbid></mbid>
511
+ <url>http://www.last.fm/music/Mando+Diao/_/Long+Before+Rock+%27n%27+Roll</url>
512
+ <streamable fulltrack="0">0</streamable>
513
+ <artist>
514
+ <name>Mando Diao</name>
515
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
516
+ <url>http://www.last.fm/music/Mando+Diao</url>
517
+ </artist>
518
+ </track>
519
+ <track>
520
+ <name>No Hard Feelings / Hefty Fine</name>
521
+ <playcount>3</playcount>
522
+ <tagcount></tagcount>
523
+ <mbid></mbid>
524
+ <url>http://www.last.fm/music/Bloodhound+Gang/_/No%2BHard%2BFeelings%2B%252F%2BHefty%2BFine</url>
525
+ <streamable fulltrack="0">0</streamable>
526
+ <artist>
527
+ <name>Bloodhound Gang</name>
528
+ <mbid>b2dbfc09-b332-408b-a235-1850e41971c5</mbid>
529
+ <url>http://www.last.fm/music/Bloodhound+Gang</url>
530
+ </artist>
531
+ </track>
532
+ <track>
533
+ <name>What You Meant</name>
534
+ <playcount>3</playcount>
535
+ <tagcount></tagcount>
536
+ <mbid></mbid>
537
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/What+You+Meant</url>
538
+ <streamable fulltrack="0">1</streamable>
539
+ <artist>
540
+ <name>Franz Ferdinand</name>
541
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
542
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
543
+ </artist>
544
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19883723.jpg</image>
545
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19883723.jpg</image>
546
+ <image size="large">http://userserve-ak.last.fm/serve/126/19883723.jpg</image>
547
+ </track>
548
+ <track>
549
+ <name>Twisted Transistor</name>
550
+ <playcount>3</playcount>
551
+ <tagcount></tagcount>
552
+ <mbid></mbid>
553
+ <url>http://www.last.fm/music/Ko%D0%AFn/_/Twisted+Transistor</url>
554
+ <streamable fulltrack="0">1</streamable>
555
+ <artist>
556
+ <name>KoЯn</name>
557
+ <mbid></mbid>
558
+ <url>http://www.last.fm/music/Ko%D0%AFn</url>
559
+ </artist>
560
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14377759.jpg</image>
561
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14377759.jpg</image>
562
+ <image size="large">http://userserve-ak.last.fm/serve/126/14377759.jpg</image>
563
+ </track>
564
+ <track>
565
+ <name>No Voice of Mine</name>
566
+ <playcount>3</playcount>
567
+ <tagcount></tagcount>
568
+ <mbid></mbid>
569
+ <url>http://www.last.fm/music/Strung+Out/_/No+Voice+of+Mine</url>
570
+ <streamable fulltrack="0">1</streamable>
571
+ <artist>
572
+ <name>Strung Out</name>
573
+ <mbid>0220a594-56a1-47ca-8288-001ead3a3546</mbid>
574
+ <url>http://www.last.fm/music/Strung+Out</url>
575
+ </artist>
576
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19807267.jpg</image>
577
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19807267.jpg</image>
578
+ <image size="large">http://userserve-ak.last.fm/serve/126/19807267.jpg</image>
579
+ </track>
580
+ <track>
581
+ <name>Sheepdog</name>
582
+ <playcount>3</playcount>
583
+ <tagcount></tagcount>
584
+ <mbid></mbid>
585
+ <url>http://www.last.fm/music/Mando+Diao/_/Sheepdog</url>
586
+ <streamable fulltrack="0">1</streamable>
587
+ <artist>
588
+ <name>Mando Diao</name>
589
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
590
+ <url>http://www.last.fm/music/Mando+Diao</url>
591
+ </artist>
592
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11406701.jpg</image>
593
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11406701.jpg</image>
594
+ <image size="large">http://userserve-ak.last.fm/serve/126/11406701.jpg</image>
595
+ </track>
596
+ <track>
597
+ <name>Mädchen</name>
598
+ <playcount>3</playcount>
599
+ <tagcount></tagcount>
600
+ <mbid></mbid>
601
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/M%C3%A4dchen</url>
602
+ <streamable fulltrack="0">1</streamable>
603
+ <artist>
604
+ <name>Die Ärzte</name>
605
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
606
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
607
+ </artist>
608
+ <image size="small">http://images.amazon.com/images/P/B00000ARRT.01._SCMZZZZZZZ_.jpg</image>
609
+ <image size="medium">http://images.amazon.com/images/P/B00000ARRT.01._SCMZZZZZZZ_.jpg</image>
610
+ <image size="large">http://images.amazon.com/images/P/B00000ARRT.01._SCMZZZZZZZ_.jpg</image>
611
+ </track>
612
+ <track>
613
+ <name>Wie immer</name>
614
+ <playcount>3</playcount>
615
+ <tagcount></tagcount>
616
+ <mbid></mbid>
617
+ <url>http://www.last.fm/music/Fettes+Brot/_/Wie+immer</url>
618
+ <streamable fulltrack="0">0</streamable>
619
+ <artist>
620
+ <name>Fettes Brot</name>
621
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
622
+ <url>http://www.last.fm/music/Fettes+Brot</url>
623
+ </artist>
624
+ <image size="small">http://images.amazon.com/images/P/B0007RA6Z0.01.MZZZZZZZ.jpg</image>
625
+ <image size="medium">http://images.amazon.com/images/P/B0007RA6Z0.01.MZZZZZZZ.jpg</image>
626
+ <image size="large">http://images.amazon.com/images/P/B0007RA6Z0.01.MZZZZZZZ.jpg</image>
627
+ </track>
628
+ <track>
629
+ <name>In Your Honor</name>
630
+ <playcount>3</playcount>
631
+ <tagcount></tagcount>
632
+ <mbid></mbid>
633
+ <url>http://www.last.fm/music/Foo+Fighters/_/In+Your+Honor</url>
634
+ <streamable fulltrack="0">1</streamable>
635
+ <artist>
636
+ <name>Foo Fighters</name>
637
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
638
+ <url>http://www.last.fm/music/Foo+Fighters</url>
639
+ </artist>
640
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23752293.jpg</image>
641
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23752293.jpg</image>
642
+ <image size="large">http://userserve-ak.last.fm/serve/126/23752293.jpg</image>
643
+ </track>
644
+ <track>
645
+ <name>Zehn</name>
646
+ <playcount>3</playcount>
647
+ <tagcount></tagcount>
648
+ <mbid></mbid>
649
+ <url>http://www.last.fm/music/Farin+Urlaub/_/Zehn</url>
650
+ <streamable fulltrack="0">0</streamable>
651
+ <artist>
652
+ <name>Farin Urlaub</name>
653
+ <mbid>23620454-4dca-45b7-8496-066e94d99826</mbid>
654
+ <url>http://www.last.fm/music/Farin+Urlaub</url>
655
+ </artist>
656
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
657
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
658
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
659
+ </track>
660
+ <track>
661
+ <name>Dusche</name>
662
+ <playcount>3</playcount>
663
+ <tagcount></tagcount>
664
+ <mbid></mbid>
665
+ <url>http://www.last.fm/music/Farin+Urlaub/_/Dusche</url>
666
+ <streamable fulltrack="0">0</streamable>
667
+ <artist>
668
+ <name>Farin Urlaub</name>
669
+ <mbid>23620454-4dca-45b7-8496-066e94d99826</mbid>
670
+ <url>http://www.last.fm/music/Farin+Urlaub</url>
671
+ </artist>
672
+ <image size="small">http://images.amazon.com/images/P/B0007QCGFE.01.MZZZZZZZ.jpg</image>
673
+ <image size="medium">http://images.amazon.com/images/P/B0007QCGFE.01.MZZZZZZZ.jpg</image>
674
+ <image size="large">http://images.amazon.com/images/P/B0007QCGFE.01.MZZZZZZZ.jpg</image>
675
+ </track>
676
+ <track>
677
+ <name>Somewhere I Belong</name>
678
+ <playcount>3</playcount>
679
+ <tagcount></tagcount>
680
+ <mbid></mbid>
681
+ <url>http://www.last.fm/music/Linkin+Park/_/Somewhere+I+Belong</url>
682
+ <streamable fulltrack="0">1</streamable>
683
+ <artist>
684
+ <name>Linkin Park</name>
685
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
686
+ <url>http://www.last.fm/music/Linkin+Park</url>
687
+ </artist>
688
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8641895.jpg</image>
689
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8641895.jpg</image>
690
+ <image size="large">http://userserve-ak.last.fm/serve/126/8641895.jpg</image>
691
+ </track>
692
+ <track>
693
+ <name>Gas Chamber</name>
694
+ <playcount>3</playcount>
695
+ <tagcount></tagcount>
696
+ <mbid></mbid>
697
+ <url>http://www.last.fm/music/Foo+Fighters/_/Gas+Chamber</url>
698
+ <streamable fulltrack="0">0</streamable>
699
+ <artist>
700
+ <name>Foo Fighters</name>
701
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
702
+ <url>http://www.last.fm/music/Foo+Fighters</url>
703
+ </artist>
704
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
705
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
706
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
707
+ </track>
708
+ <track>
709
+ <name>Too Much Brandy</name>
710
+ <playcount>3</playcount>
711
+ <tagcount></tagcount>
712
+ <mbid></mbid>
713
+ <url>http://www.last.fm/music/The+Streets/_/Too+Much+Brandy</url>
714
+ <streamable fulltrack="0">1</streamable>
715
+ <artist>
716
+ <name>The Streets</name>
717
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
718
+ <url>http://www.last.fm/music/The+Streets</url>
719
+ </artist>
720
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8594953.jpg</image>
721
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8594953.jpg</image>
722
+ <image size="large">http://userserve-ak.last.fm/serve/126/8594953.jpg</image>
723
+ </track>
724
+ <track>
725
+ <name>Kopfhaut</name>
726
+ <playcount>3</playcount>
727
+ <tagcount></tagcount>
728
+ <mbid></mbid>
729
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Kopfhaut</url>
730
+ <streamable fulltrack="0">1</streamable>
731
+ <artist>
732
+ <name>Die Ärzte</name>
733
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
734
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
735
+ </artist>
736
+ <image size="small">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
737
+ <image size="medium">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
738
+ <image size="large">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
739
+ </track>
740
+ <track>
741
+ <name>You'd Do the Same</name>
742
+ <playcount>3</playcount>
743
+ <tagcount></tagcount>
744
+ <mbid></mbid>
745
+ <url>http://www.last.fm/music/Anti-Flag/_/You%27d+Do+the+Same</url>
746
+ <streamable fulltrack="0">1</streamable>
747
+ <artist>
748
+ <name>Anti-Flag</name>
749
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
750
+ <url>http://www.last.fm/music/Anti-Flag</url>
751
+ </artist>
752
+ <image size="small">http://images.amazon.com/images/P/B0000005XM.01.MZZZZZZZ.jpg</image>
753
+ <image size="medium">http://images.amazon.com/images/P/B0000005XM.01.MZZZZZZZ.jpg</image>
754
+ <image size="large">http://images.amazon.com/images/P/B0000005XM.01.MZZZZZZZ.jpg</image>
755
+ </track>
756
+ </tracks></lfm>