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,759 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="14" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>American Idiot</name>
6
+ <playcount>4</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Green+Day/_/American+Idiot</url>
10
+ <streamable fulltrack="0">1</streamable>
11
+ <artist>
12
+ <name>Green Day</name>
13
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
14
+ <url>http://www.last.fm/music/Green+Day</url>
15
+ </artist>
16
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8638429.jpg</image>
17
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8638429.jpg</image>
18
+ <image size="large">http://userserve-ak.last.fm/serve/126/8638429.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>Post-War Breakout</name>
22
+ <playcount>4</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/Anti-Flag/_/Post-War+Breakout</url>
26
+ <streamable fulltrack="0">1</streamable>
27
+ <artist>
28
+ <name>Anti-Flag</name>
29
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
30
+ <url>http://www.last.fm/music/Anti-Flag</url>
31
+ </artist>
32
+ <image size="small">http://images.amazon.com/images/P/B0000DH29Y.01.THUMBZZZ.jpg</image>
33
+ <image size="medium">http://images.amazon.com/images/P/B0000DH29Y.01.MZZZZZZZ.jpg</image>
34
+ <image size="large">http://images.amazon.com/images/P/B0000DH29Y.01.LZZZZZZZ.jpg</image>
35
+ </track>
36
+ <track>
37
+ <name>Pins and needless</name>
38
+ <playcount>4</playcount>
39
+ <tagcount></tagcount>
40
+ <mbid></mbid>
41
+ <url>http://www.last.fm/music/Billy+Talent/_/Pins+and+needless</url>
42
+ <streamable fulltrack="0">0</streamable>
43
+ <artist>
44
+ <name>Billy Talent</name>
45
+ <mbid>fd429857-5ace-4609-ae54-1502c3bdac11</mbid>
46
+ <url>http://www.last.fm/music/Billy+Talent</url>
47
+ </artist>
48
+ </track>
49
+ <track>
50
+ <name>Ein Gruss</name>
51
+ <playcount>4</playcount>
52
+ <tagcount></tagcount>
53
+ <mbid></mbid>
54
+ <url>http://www.last.fm/music/Juli/_/Ein+Gruss</url>
55
+ <streamable fulltrack="0">0</streamable>
56
+ <artist>
57
+ <name>Juli</name>
58
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
59
+ <url>http://www.last.fm/music/Juli</url>
60
+ </artist>
61
+ </track>
62
+ <track>
63
+ <name>Meteora - 09 - Breaking The H</name>
64
+ <playcount>4</playcount>
65
+ <tagcount></tagcount>
66
+ <mbid></mbid>
67
+ <url>http://www.last.fm/music/Linkin+Park/_/Meteora+-+09+-+Breaking+The+H</url>
68
+ <streamable fulltrack="0">0</streamable>
69
+ <artist>
70
+ <name>Linkin Park</name>
71
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
72
+ <url>http://www.last.fm/music/Linkin+Park</url>
73
+ </artist>
74
+ </track>
75
+ <track>
76
+ <name>Green Eyes</name>
77
+ <playcount>4</playcount>
78
+ <tagcount></tagcount>
79
+ <mbid></mbid>
80
+ <url>http://www.last.fm/music/Coldplay/_/Green+Eyes</url>
81
+ <streamable fulltrack="0">1</streamable>
82
+ <artist>
83
+ <name>Coldplay</name>
84
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
85
+ <url>http://www.last.fm/music/Coldplay</url>
86
+ </artist>
87
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14245401.jpg</image>
88
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14245401.jpg</image>
89
+ <image size="large">http://userserve-ak.last.fm/serve/126/14245401.jpg</image>
90
+ </track>
91
+ <track>
92
+ <name>What If I Do?</name>
93
+ <playcount>4</playcount>
94
+ <tagcount></tagcount>
95
+ <mbid></mbid>
96
+ <url>http://www.last.fm/music/Foo+Fighters/_/What+If+I+Do%3F</url>
97
+ <streamable fulltrack="0">1</streamable>
98
+ <artist>
99
+ <name>Foo Fighters</name>
100
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
101
+ <url>http://www.last.fm/music/Foo+Fighters</url>
102
+ </artist>
103
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23752293.jpg</image>
104
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23752293.jpg</image>
105
+ <image size="large">http://userserve-ak.last.fm/serve/126/23752293.jpg</image>
106
+ </track>
107
+ <track>
108
+ <name>Falsche Entscheidung</name>
109
+ <playcount>4</playcount>
110
+ <tagcount></tagcount>
111
+ <mbid></mbid>
112
+ <url>http://www.last.fm/music/Fettes+Brot/_/Falsche+Entscheidung</url>
113
+ <streamable fulltrack="0">0</streamable>
114
+ <artist>
115
+ <name>Fettes Brot</name>
116
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
117
+ <url>http://www.last.fm/music/Fettes+Brot</url>
118
+ </artist>
119
+ <image size="small">http://images.amazon.com/images/P/B0007RA6Z0.01.MZZZZZZZ.jpg</image>
120
+ <image size="medium">http://images.amazon.com/images/P/B0007RA6Z0.01.MZZZZZZZ.jpg</image>
121
+ <image size="large">http://images.amazon.com/images/P/B0007RA6Z0.01.MZZZZZZZ.jpg</image>
122
+ </track>
123
+ <track>
124
+ <name>Call Me Manana</name>
125
+ <playcount>4</playcount>
126
+ <tagcount></tagcount>
127
+ <mbid></mbid>
128
+ <url>http://www.last.fm/music/Scooter/_/Call+Me+Manana</url>
129
+ <streamable fulltrack="0">0</streamable>
130
+ <artist>
131
+ <name>Scooter</name>
132
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
133
+ <url>http://www.last.fm/music/Scooter</url>
134
+ </artist>
135
+ <image size="small">http://images.amazon.com/images/P/B00006SFDT.01.MZZZZZZZ.jpg</image>
136
+ <image size="medium">http://images.amazon.com/images/P/B00006SFDT.01.MZZZZZZZ.jpg</image>
137
+ <image size="large">http://images.amazon.com/images/P/B00006SFDT.01.MZZZZZZZ.jpg</image>
138
+ </track>
139
+ <track>
140
+ <name>Lost?</name>
141
+ <playcount>4</playcount>
142
+ <tagcount></tagcount>
143
+ <mbid></mbid>
144
+ <url>http://www.last.fm/music/Coldplay/_/Lost%3F</url>
145
+ <streamable fulltrack="0">1</streamable>
146
+ <artist>
147
+ <name>Coldplay</name>
148
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
149
+ <url>http://www.last.fm/music/Coldplay</url>
150
+ </artist>
151
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5834730.jpg</image>
152
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5834730.jpg</image>
153
+ <image size="large">http://userserve-ak.last.fm/serve/126/5834730.jpg</image>
154
+ </track>
155
+ <track>
156
+ <name>Titel 09</name>
157
+ <playcount>4</playcount>
158
+ <tagcount></tagcount>
159
+ <mbid></mbid>
160
+ <url>http://www.last.fm/music/Scooter/_/Titel+09</url>
161
+ <streamable fulltrack="0">0</streamable>
162
+ <artist>
163
+ <name>Scooter</name>
164
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
165
+ <url>http://www.last.fm/music/Scooter</url>
166
+ </artist>
167
+ </track>
168
+ <track>
169
+ <name>I Want You to Stay</name>
170
+ <playcount>4</playcount>
171
+ <tagcount></tagcount>
172
+ <mbid></mbid>
173
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park/_/I+Want+You+to+Stay</url>
174
+ <streamable fulltrack="0">1</streamable>
175
+ <artist>
176
+ <name>Maxïmo Park</name>
177
+ <mbid>92e634a7-6023-4be8-be15-ebba822f5b34</mbid>
178
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park</url>
179
+ </artist>
180
+ <image size="small">http://images.amazon.com/images/P/B00094OBX4.01.MZZZZZZZ.jpg</image>
181
+ <image size="medium">http://images.amazon.com/images/P/B00094OBX4.01.MZZZZZZZ.jpg</image>
182
+ <image size="large">http://images.amazon.com/images/P/B00094OBX4.01.MZZZZZZZ.jpg</image>
183
+ </track>
184
+ <track>
185
+ <name>Crawling (live)</name>
186
+ <playcount>4</playcount>
187
+ <tagcount></tagcount>
188
+ <mbid></mbid>
189
+ <url>http://www.last.fm/music/Linkin+Park/_/Crawling+%28live%29</url>
190
+ <streamable fulltrack="0">0</streamable>
191
+ <artist>
192
+ <name>Linkin Park</name>
193
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
194
+ <url>http://www.last.fm/music/Linkin+Park</url>
195
+ </artist>
196
+ <image size="small">http://images.amazon.com/images/P/B00025DYQA.01._SCMZZZZZZZ_.jpg</image>
197
+ <image size="medium">http://images.amazon.com/images/P/B00025DYQA.01._SCMZZZZZZZ_.jpg</image>
198
+ <image size="large">http://images.amazon.com/images/P/B00025DYQA.01._SCMZZZZZZZ_.jpg</image>
199
+ </track>
200
+ <track>
201
+ <name>Intoxication</name>
202
+ <playcount>4</playcount>
203
+ <tagcount></tagcount>
204
+ <mbid></mbid>
205
+ <url>http://www.last.fm/music/Gentleman/_/Intoxication</url>
206
+ <streamable fulltrack="0">1</streamable>
207
+ <artist>
208
+ <name>Gentleman</name>
209
+ <mbid>8de4a831-7c25-4d34-90cf-254de0c36e49</mbid>
210
+ <url>http://www.last.fm/music/Gentleman</url>
211
+ </artist>
212
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28019385.jpg</image>
213
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28019385.jpg</image>
214
+ <image size="large">http://userserve-ak.last.fm/serve/126/28019385.jpg</image>
215
+ </track>
216
+ <track>
217
+ <name>L.E.S. Artistes</name>
218
+ <playcount>4</playcount>
219
+ <tagcount></tagcount>
220
+ <mbid></mbid>
221
+ <url>http://www.last.fm/music/Santogold/_/L.E.S.+Artistes</url>
222
+ <streamable fulltrack="1">1</streamable>
223
+ <artist>
224
+ <name>Santogold</name>
225
+ <mbid>d7311646-287b-4d3a-9a4f-7d46f93075e5</mbid>
226
+ <url>http://www.last.fm/music/Santogold</url>
227
+ </artist>
228
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25646267.png</image>
229
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25646267.png</image>
230
+ <image size="large">http://userserve-ak.last.fm/serve/126/25646267.png</image>
231
+ </track>
232
+ <track>
233
+ <name>Graffiti</name>
234
+ <playcount>4</playcount>
235
+ <tagcount></tagcount>
236
+ <mbid></mbid>
237
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park/_/Graffiti</url>
238
+ <streamable fulltrack="0">1</streamable>
239
+ <artist>
240
+ <name>Maxïmo Park</name>
241
+ <mbid>92e634a7-6023-4be8-be15-ebba822f5b34</mbid>
242
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park</url>
243
+ </artist>
244
+ <image size="small">http://images.amazon.com/images/P/B00094OBX4.01.MZZZZZZZ.jpg</image>
245
+ <image size="medium">http://images.amazon.com/images/P/B00094OBX4.01.MZZZZZZZ.jpg</image>
246
+ <image size="large">http://images.amazon.com/images/P/B00094OBX4.01.MZZZZZZZ.jpg</image>
247
+ </track>
248
+ <track>
249
+ <name>Carousel</name>
250
+ <playcount>4</playcount>
251
+ <tagcount></tagcount>
252
+ <mbid></mbid>
253
+ <url>http://www.last.fm/music/blink-182/_/Carousel</url>
254
+ <streamable fulltrack="0">0</streamable>
255
+ <artist>
256
+ <name>blink-182</name>
257
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
258
+ <url>http://www.last.fm/music/blink-182</url>
259
+ </artist>
260
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8639213.jpg</image>
261
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8639213.jpg</image>
262
+ <image size="large">http://userserve-ak.last.fm/serve/126/8639213.jpg</image>
263
+ </track>
264
+ <track>
265
+ <name>One (Always Hardcore)</name>
266
+ <playcount>4</playcount>
267
+ <tagcount></tagcount>
268
+ <mbid></mbid>
269
+ <url>http://www.last.fm/music/Scooter/_/One+%28Always+Hardcore%29</url>
270
+ <streamable fulltrack="0">1</streamable>
271
+ <artist>
272
+ <name>Scooter</name>
273
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
274
+ <url>http://www.last.fm/music/Scooter</url>
275
+ </artist>
276
+ <image size="small">http://images.amazon.com/images/P/B00062ICNO.01.MZZZZZZZ.jpg</image>
277
+ <image size="medium">http://images.amazon.com/images/P/B00062ICNO.01.MZZZZZZZ.jpg</image>
278
+ <image size="large">http://images.amazon.com/images/P/B00062ICNO.01.MZZZZZZZ.jpg</image>
279
+ </track>
280
+ <track>
281
+ <name>The Fallen</name>
282
+ <playcount>4</playcount>
283
+ <tagcount></tagcount>
284
+ <mbid></mbid>
285
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/The+Fallen</url>
286
+ <streamable fulltrack="0">1</streamable>
287
+ <artist>
288
+ <name>Franz Ferdinand</name>
289
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
290
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
291
+ </artist>
292
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19883723.jpg</image>
293
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19883723.jpg</image>
294
+ <image size="large">http://userserve-ak.last.fm/serve/126/19883723.jpg</image>
295
+ </track>
296
+ <track>
297
+ <name>A Place For My Head (live At Docklands Arena, London)</name>
298
+ <playcount>4</playcount>
299
+ <tagcount></tagcount>
300
+ <mbid></mbid>
301
+ <url>http://www.last.fm/music/Linkin+Park/_/A+Place+For+My+Head+%28live+At+Docklands+Arena%2C+London%29</url>
302
+ <streamable fulltrack="0">0</streamable>
303
+ <artist>
304
+ <name>Linkin Park</name>
305
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
306
+ <url>http://www.last.fm/music/Linkin+Park</url>
307
+ </artist>
308
+ </track>
309
+ <track>
310
+ <name>Secrets</name>
311
+ <playcount>4</playcount>
312
+ <tagcount></tagcount>
313
+ <mbid></mbid>
314
+ <url>http://www.last.fm/music/Good+Charlotte/_/Secrets</url>
315
+ <streamable fulltrack="0">1</streamable>
316
+ <artist>
317
+ <name>Good Charlotte</name>
318
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
319
+ <url>http://www.last.fm/music/Good+Charlotte</url>
320
+ </artist>
321
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19445721.jpg</image>
322
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19445721.jpg</image>
323
+ <image size="large">http://userserve-ak.last.fm/serve/126/19445721.jpg</image>
324
+ </track>
325
+ <track>
326
+ <name>The Night I Lost My Head</name>
327
+ <playcount>4</playcount>
328
+ <tagcount></tagcount>
329
+ <mbid></mbid>
330
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park/_/The+Night+I+Lost+My+Head</url>
331
+ <streamable fulltrack="0">0</streamable>
332
+ <artist>
333
+ <name>Maxïmo Park</name>
334
+ <mbid>92e634a7-6023-4be8-be15-ebba822f5b34</mbid>
335
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park</url>
336
+ </artist>
337
+ <image size="small">http://userserve-ak.last.fm/serve/34s/3441246.jpg</image>
338
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/3441246.jpg</image>
339
+ <image size="large">http://userserve-ak.last.fm/serve/126/3441246.jpg</image>
340
+ </track>
341
+ <track>
342
+ <name>Titel 08</name>
343
+ <playcount>4</playcount>
344
+ <tagcount></tagcount>
345
+ <mbid></mbid>
346
+ <url>http://www.last.fm/music/Scooter/_/Titel+08</url>
347
+ <streamable fulltrack="0">0</streamable>
348
+ <artist>
349
+ <name>Scooter</name>
350
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
351
+ <url>http://www.last.fm/music/Scooter</url>
352
+ </artist>
353
+ </track>
354
+ <track>
355
+ <name>Cemeteries of London</name>
356
+ <playcount>4</playcount>
357
+ <tagcount></tagcount>
358
+ <mbid></mbid>
359
+ <url>http://www.last.fm/music/Coldplay/_/Cemeteries+of+London</url>
360
+ <streamable fulltrack="0">1</streamable>
361
+ <artist>
362
+ <name>Coldplay</name>
363
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
364
+ <url>http://www.last.fm/music/Coldplay</url>
365
+ </artist>
366
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14349365.jpg</image>
367
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14349365.jpg</image>
368
+ <image size="large">http://userserve-ak.last.fm/serve/126/14349365.jpg</image>
369
+ </track>
370
+ <track>
371
+ <name>Politik</name>
372
+ <playcount>4</playcount>
373
+ <tagcount></tagcount>
374
+ <mbid></mbid>
375
+ <url>http://www.last.fm/music/Coldplay/_/Politik</url>
376
+ <streamable fulltrack="0">1</streamable>
377
+ <artist>
378
+ <name>Coldplay</name>
379
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
380
+ <url>http://www.last.fm/music/Coldplay</url>
381
+ </artist>
382
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14245401.jpg</image>
383
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14245401.jpg</image>
384
+ <image size="large">http://userserve-ak.last.fm/serve/126/14245401.jpg</image>
385
+ </track>
386
+ <track>
387
+ <name>Intro (Manche nennen es Musik)</name>
388
+ <playcount>4</playcount>
389
+ <tagcount></tagcount>
390
+ <mbid></mbid>
391
+ <url>http://www.last.fm/music/Farin+Urlaub/_/Intro+%28Manche+nennen+es+Musik%29</url>
392
+ <streamable fulltrack="0">1</streamable>
393
+ <artist>
394
+ <name>Farin Urlaub</name>
395
+ <mbid>23620454-4dca-45b7-8496-066e94d99826</mbid>
396
+ <url>http://www.last.fm/music/Farin+Urlaub</url>
397
+ </artist>
398
+ <image size="small">http://userserve-ak.last.fm/serve/34s/3608376.jpg</image>
399
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/3608376.jpg</image>
400
+ <image size="large">http://userserve-ak.last.fm/serve/126/3608376.jpg</image>
401
+ </track>
402
+ <track>
403
+ <name>Lovers In Japan (Acoustic Version)</name>
404
+ <playcount>4</playcount>
405
+ <tagcount></tagcount>
406
+ <mbid></mbid>
407
+ <url>http://www.last.fm/music/Coldplay/_/Lovers+In+Japan+%28Acoustic+Version%29</url>
408
+ <streamable fulltrack="0">0</streamable>
409
+ <artist>
410
+ <name>Coldplay</name>
411
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
412
+ <url>http://www.last.fm/music/Coldplay</url>
413
+ </artist>
414
+ </track>
415
+ <track>
416
+ <name>Walk Away</name>
417
+ <playcount>4</playcount>
418
+ <tagcount></tagcount>
419
+ <mbid></mbid>
420
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/Walk+Away</url>
421
+ <streamable fulltrack="0">1</streamable>
422
+ <artist>
423
+ <name>Franz Ferdinand</name>
424
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
425
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
426
+ </artist>
427
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19883723.jpg</image>
428
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19883723.jpg</image>
429
+ <image size="large">http://userserve-ak.last.fm/serve/126/19883723.jpg</image>
430
+ </track>
431
+ <track>
432
+ <name>Summer Wine</name>
433
+ <playcount>4</playcount>
434
+ <tagcount></tagcount>
435
+ <mbid></mbid>
436
+ <url>http://www.last.fm/music/Scooter/_/Summer+Wine</url>
437
+ <streamable fulltrack="0">0</streamable>
438
+ <artist>
439
+ <name>Scooter</name>
440
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
441
+ <url>http://www.last.fm/music/Scooter</url>
442
+ </artist>
443
+ <image size="small">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
444
+ <image size="medium">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
445
+ <image size="large">http://images.amazon.com/images/P/B00004TYKI.01.MZZZZZZZ.jpg</image>
446
+ </track>
447
+ <track>
448
+ <name>Numb (live)</name>
449
+ <playcount>4</playcount>
450
+ <tagcount></tagcount>
451
+ <mbid></mbid>
452
+ <url>http://www.last.fm/music/Linkin+Park/_/Numb+%28live%29</url>
453
+ <streamable fulltrack="0">0</streamable>
454
+ <artist>
455
+ <name>Linkin Park</name>
456
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
457
+ <url>http://www.last.fm/music/Linkin+Park</url>
458
+ </artist>
459
+ </track>
460
+ <track>
461
+ <name>Fieber</name>
462
+ <playcount>4</playcount>
463
+ <tagcount></tagcount>
464
+ <mbid></mbid>
465
+ <url>http://www.last.fm/music/Peter+Fox/_/Fieber</url>
466
+ <streamable fulltrack="0">0</streamable>
467
+ <artist>
468
+ <name>Peter Fox</name>
469
+ <mbid></mbid>
470
+ <url>http://www.last.fm/music/Peter+Fox</url>
471
+ </artist>
472
+ </track>
473
+ <track>
474
+ <name>Believe Me Natalie</name>
475
+ <playcount>4</playcount>
476
+ <tagcount></tagcount>
477
+ <mbid></mbid>
478
+ <url>http://www.last.fm/music/The+Killers/_/Believe+Me+Natalie</url>
479
+ <streamable fulltrack="0">0</streamable>
480
+ <artist>
481
+ <name>The Killers</name>
482
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
483
+ <url>http://www.last.fm/music/The+Killers</url>
484
+ </artist>
485
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634917.jpg</image>
486
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634917.jpg</image>
487
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634917.jpg</image>
488
+ </track>
489
+ <track>
490
+ <name>This Is Such a Pity</name>
491
+ <playcount>4</playcount>
492
+ <tagcount></tagcount>
493
+ <mbid></mbid>
494
+ <url>http://www.last.fm/music/Weezer/_/This+Is+Such+a+Pity</url>
495
+ <streamable fulltrack="1">1</streamable>
496
+ <artist>
497
+ <name>Weezer</name>
498
+ <mbid>6fe07aa5-fec0-4eca-a456-f29bff451b04</mbid>
499
+ <url>http://www.last.fm/music/Weezer</url>
500
+ </artist>
501
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8673675.jpg</image>
502
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8673675.jpg</image>
503
+ <image size="large">http://userserve-ak.last.fm/serve/126/8673675.jpg</image>
504
+ </track>
505
+ <track>
506
+ <name>In My Place (live)</name>
507
+ <playcount>4</playcount>
508
+ <tagcount></tagcount>
509
+ <mbid></mbid>
510
+ <url>http://www.last.fm/music/Coldplay/_/In+My+Place+%28live%29</url>
511
+ <streamable fulltrack="0">0</streamable>
512
+ <artist>
513
+ <name>Coldplay</name>
514
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
515
+ <url>http://www.last.fm/music/Coldplay</url>
516
+ </artist>
517
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11468731.jpg</image>
518
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11468731.jpg</image>
519
+ <image size="large">http://userserve-ak.last.fm/serve/126/11468731.jpg</image>
520
+ </track>
521
+ <track>
522
+ <name>Meet My Marker</name>
523
+ <playcount>4</playcount>
524
+ <tagcount></tagcount>
525
+ <mbid></mbid>
526
+ <url>http://www.last.fm/music/Good+Charlotte/_/Meet+My+Marker</url>
527
+ <streamable fulltrack="0">0</streamable>
528
+ <artist>
529
+ <name>Good Charlotte</name>
530
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
531
+ <url>http://www.last.fm/music/Good+Charlotte</url>
532
+ </artist>
533
+ </track>
534
+ <track>
535
+ <name>Now I'm All Over the Shop</name>
536
+ <playcount>4</playcount>
537
+ <tagcount></tagcount>
538
+ <mbid></mbid>
539
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park/_/Now+I%27m+All+Over+the+Shop</url>
540
+ <streamable fulltrack="0">0</streamable>
541
+ <artist>
542
+ <name>Maxïmo Park</name>
543
+ <mbid>92e634a7-6023-4be8-be15-ebba822f5b34</mbid>
544
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park</url>
545
+ </artist>
546
+ </track>
547
+ <track>
548
+ <name>Where iss The Line</name>
549
+ <playcount>4</playcount>
550
+ <tagcount></tagcount>
551
+ <mbid></mbid>
552
+ <url>http://www.last.fm/music/Billy+Talent/_/Where+iss+The+Line</url>
553
+ <streamable fulltrack="0">0</streamable>
554
+ <artist>
555
+ <name>Billy Talent</name>
556
+ <mbid>fd429857-5ace-4609-ae54-1502c3bdac11</mbid>
557
+ <url>http://www.last.fm/music/Billy+Talent</url>
558
+ </artist>
559
+ </track>
560
+ <track>
561
+ <name>We Are All on Drugs</name>
562
+ <playcount>4</playcount>
563
+ <tagcount></tagcount>
564
+ <mbid></mbid>
565
+ <url>http://www.last.fm/music/Weezer/_/We+Are+All+on+Drugs</url>
566
+ <streamable fulltrack="0">0</streamable>
567
+ <artist>
568
+ <name>Weezer</name>
569
+ <mbid>6fe07aa5-fec0-4eca-a456-f29bff451b04</mbid>
570
+ <url>http://www.last.fm/music/Weezer</url>
571
+ </artist>
572
+ </track>
573
+ <track>
574
+ <name>Amsterdam</name>
575
+ <playcount>4</playcount>
576
+ <tagcount></tagcount>
577
+ <mbid></mbid>
578
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John/_/Amsterdam</url>
579
+ <streamable fulltrack="0">1</streamable>
580
+ <artist>
581
+ <name>Peter Bjorn and John</name>
582
+ <mbid>32a83250-7e26-422d-b9ac-f4564343e9ce</mbid>
583
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John</url>
584
+ </artist>
585
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19754455.jpg</image>
586
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19754455.jpg</image>
587
+ <image size="large">http://userserve-ak.last.fm/serve/126/19754455.jpg</image>
588
+ </track>
589
+ <track>
590
+ <name>Mind the G.A.T.T.</name>
591
+ <playcount>4</playcount>
592
+ <tagcount></tagcount>
593
+ <mbid></mbid>
594
+ <url>http://www.last.fm/music/Anti-Flag/_/Mind+the+G.A.T.T.</url>
595
+ <streamable fulltrack="0">1</streamable>
596
+ <artist>
597
+ <name>Anti-Flag</name>
598
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
599
+ <url>http://www.last.fm/music/Anti-Flag</url>
600
+ </artist>
601
+ <image size="small">http://images.amazon.com/images/P/B0000DH29Y.01.THUMBZZZ.jpg</image>
602
+ <image size="medium">http://images.amazon.com/images/P/B0000DH29Y.01.MZZZZZZZ.jpg</image>
603
+ <image size="large">http://images.amazon.com/images/P/B0000DH29Y.01.LZZZZZZZ.jpg</image>
604
+ </track>
605
+ <track>
606
+ <name>Holiday</name>
607
+ <playcount>4</playcount>
608
+ <tagcount></tagcount>
609
+ <mbid></mbid>
610
+ <url>http://www.last.fm/music/Green+Day/_/Holiday</url>
611
+ <streamable fulltrack="0">1</streamable>
612
+ <artist>
613
+ <name>Green Day</name>
614
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
615
+ <url>http://www.last.fm/music/Green+Day</url>
616
+ </artist>
617
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5083839.jpg</image>
618
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5083839.jpg</image>
619
+ <image size="large">http://userserve-ak.last.fm/serve/126/5083839.jpg</image>
620
+ </track>
621
+ <track>
622
+ <name>Going Missing</name>
623
+ <playcount>4</playcount>
624
+ <tagcount></tagcount>
625
+ <mbid></mbid>
626
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park/_/Going+Missing</url>
627
+ <streamable fulltrack="0">0</streamable>
628
+ <artist>
629
+ <name>Maxïmo Park</name>
630
+ <mbid>92e634a7-6023-4be8-be15-ebba822f5b34</mbid>
631
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park</url>
632
+ </artist>
633
+ <image size="small">http://images.amazon.com/images/P/B000BX10VE.01._SCMZZZZZZZ_.jpg</image>
634
+ <image size="medium">http://images.amazon.com/images/P/B000BX10VE.01._SCMZZZZZZZ_.jpg</image>
635
+ <image size="large">http://images.amazon.com/images/P/B000BX10VE.01._SCMZZZZZZZ_.jpg</image>
636
+ </track>
637
+ <track>
638
+ <name>You Could Have It So Much Better</name>
639
+ <playcount>4</playcount>
640
+ <tagcount></tagcount>
641
+ <mbid></mbid>
642
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/You+Could+Have+It+So+Much+Better</url>
643
+ <streamable fulltrack="0">1</streamable>
644
+ <artist>
645
+ <name>Franz Ferdinand</name>
646
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
647
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
648
+ </artist>
649
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19883723.jpg</image>
650
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19883723.jpg</image>
651
+ <image size="large">http://userserve-ak.last.fm/serve/126/19883723.jpg</image>
652
+ </track>
653
+ <track>
654
+ <name>War of the Sexes</name>
655
+ <playcount>4</playcount>
656
+ <tagcount></tagcount>
657
+ <mbid></mbid>
658
+ <url>http://www.last.fm/music/The+Streets/_/War+of+the+Sexes</url>
659
+ <streamable fulltrack="0">1</streamable>
660
+ <artist>
661
+ <name>The Streets</name>
662
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
663
+ <url>http://www.last.fm/music/The+Streets</url>
664
+ </artist>
665
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8790429.jpg</image>
666
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8790429.jpg</image>
667
+ <image size="large">http://userserve-ak.last.fm/serve/126/8790429.jpg</image>
668
+ </track>
669
+ <track>
670
+ <name>Fairytale of New York</name>
671
+ <playcount>4</playcount>
672
+ <tagcount></tagcount>
673
+ <mbid></mbid>
674
+ <url>http://www.last.fm/music/The+Pogues/_/Fairytale+of+New+York</url>
675
+ <streamable fulltrack="0">1</streamable>
676
+ <artist>
677
+ <name>The Pogues</name>
678
+ <mbid>d41a6875-b626-4c0f-89a1-aecb643d29ff</mbid>
679
+ <url>http://www.last.fm/music/The+Pogues</url>
680
+ </artist>
681
+ <image size="small">http://images.amazon.com/images/P/B0006957SA.01.MZZZZZZZ.jpg</image>
682
+ <image size="medium">http://images.amazon.com/images/P/B0006957SA.01.MZZZZZZZ.jpg</image>
683
+ <image size="large">http://images.amazon.com/images/P/B0006957SA.01.MZZZZZZZ.jpg</image>
684
+ </track>
685
+ <track>
686
+ <name>Titel 04</name>
687
+ <playcount>4</playcount>
688
+ <tagcount></tagcount>
689
+ <mbid></mbid>
690
+ <url>http://www.last.fm/music/Scooter/_/Titel+04</url>
691
+ <streamable fulltrack="0">0</streamable>
692
+ <artist>
693
+ <name>Scooter</name>
694
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
695
+ <url>http://www.last.fm/music/Scooter</url>
696
+ </artist>
697
+ </track>
698
+ <track>
699
+ <name>Heldenzeit</name>
700
+ <playcount>4</playcount>
701
+ <tagcount></tagcount>
702
+ <mbid></mbid>
703
+ <url>http://www.last.fm/music/Wir+sind+Helden/_/Heldenzeit</url>
704
+ <streamable fulltrack="0">1</streamable>
705
+ <artist>
706
+ <name>Wir sind Helden</name>
707
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
708
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
709
+ </artist>
710
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15183527.jpg</image>
711
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15183527.jpg</image>
712
+ <image size="large">http://userserve-ak.last.fm/serve/126/15183527.jpg</image>
713
+ </track>
714
+ <track>
715
+ <name>High Speed</name>
716
+ <playcount>4</playcount>
717
+ <tagcount></tagcount>
718
+ <mbid></mbid>
719
+ <url>http://www.last.fm/music/Coldplay/_/High+Speed</url>
720
+ <streamable fulltrack="0">1</streamable>
721
+ <artist>
722
+ <name>Coldplay</name>
723
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
724
+ <url>http://www.last.fm/music/Coldplay</url>
725
+ </artist>
726
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14225619.jpg</image>
727
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14225619.jpg</image>
728
+ <image size="large">http://userserve-ak.last.fm/serve/126/14225619.jpg</image>
729
+ </track>
730
+ <track>
731
+ <name>Titel 02</name>
732
+ <playcount>4</playcount>
733
+ <tagcount></tagcount>
734
+ <mbid></mbid>
735
+ <url>http://www.last.fm/music/Scooter/_/Titel+02</url>
736
+ <streamable fulltrack="0">0</streamable>
737
+ <artist>
738
+ <name>Scooter</name>
739
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
740
+ <url>http://www.last.fm/music/Scooter</url>
741
+ </artist>
742
+ </track>
743
+ <track>
744
+ <name>Limassol</name>
745
+ <playcount>4</playcount>
746
+ <tagcount></tagcount>
747
+ <mbid></mbid>
748
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park/_/Limassol</url>
749
+ <streamable fulltrack="0">1</streamable>
750
+ <artist>
751
+ <name>Maxïmo Park</name>
752
+ <mbid>92e634a7-6023-4be8-be15-ebba822f5b34</mbid>
753
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park</url>
754
+ </artist>
755
+ <image size="small">http://images.amazon.com/images/P/B00094OBX4.01.MZZZZZZZ.jpg</image>
756
+ <image size="medium">http://images.amazon.com/images/P/B00094OBX4.01.MZZZZZZZ.jpg</image>
757
+ <image size="large">http://images.amazon.com/images/P/B00094OBX4.01.MZZZZZZZ.jpg</image>
758
+ </track>
759
+ </tracks></lfm>