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,771 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="3" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>I'm Not Gonna Teach Your Boyfriend How to Dance With You</name>
6
+ <playcount>41</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Black+Kids/_/I%27m+Not+Gonna+Teach+Your+Boyfriend+How+to+Dance+With+You</url>
10
+ <streamable fulltrack="0">1</streamable>
11
+ <artist>
12
+ <name>Black Kids</name>
13
+ <mbid></mbid>
14
+ <url>http://www.last.fm/music/Black+Kids</url>
15
+ </artist>
16
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10310053.jpg</image>
17
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10310053.jpg</image>
18
+ <image size="large">http://userserve-ak.last.fm/serve/126/10310053.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>M79</name>
22
+ <playcount>41</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/Vampire+Weekend/_/M79</url>
26
+ <streamable fulltrack="0">0</streamable>
27
+ <artist>
28
+ <name>Vampire Weekend</name>
29
+ <mbid>af37c51c-0790-4a29-b995-456f98a6b8c9</mbid>
30
+ <url>http://www.last.fm/music/Vampire+Weekend</url>
31
+ </artist>
32
+ </track>
33
+ <track>
34
+ <name>Hate to Say I Told You So</name>
35
+ <playcount>41</playcount>
36
+ <tagcount></tagcount>
37
+ <mbid></mbid>
38
+ <url>http://www.last.fm/music/The+Hives/_/Hate+to+Say+I+Told+You+So</url>
39
+ <streamable fulltrack="0">1</streamable>
40
+ <artist>
41
+ <name>The Hives</name>
42
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
43
+ <url>http://www.last.fm/music/The+Hives</url>
44
+ </artist>
45
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25888215.png</image>
46
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25888215.png</image>
47
+ <image size="large">http://userserve-ak.last.fm/serve/126/25888215.png</image>
48
+ </track>
49
+ <track>
50
+ <name>Die, All Right!</name>
51
+ <playcount>40</playcount>
52
+ <tagcount></tagcount>
53
+ <mbid></mbid>
54
+ <url>http://www.last.fm/music/The+Hives/_/Die%2C+All+Right%21</url>
55
+ <streamable fulltrack="0">1</streamable>
56
+ <artist>
57
+ <name>The Hives</name>
58
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
59
+ <url>http://www.last.fm/music/The+Hives</url>
60
+ </artist>
61
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25888215.png</image>
62
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25888215.png</image>
63
+ <image size="large">http://userserve-ak.last.fm/serve/126/25888215.png</image>
64
+ </track>
65
+ <track>
66
+ <name>3. Shoppen Gehen (Single Version)</name>
67
+ <playcount>39</playcount>
68
+ <tagcount></tagcount>
69
+ <mbid></mbid>
70
+ <url>http://www.last.fm/music/Madsen/_/3.+Shoppen+Gehen+%28Single+Version%29</url>
71
+ <streamable fulltrack="0">0</streamable>
72
+ <artist>
73
+ <name>Madsen</name>
74
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
75
+ <url>http://www.last.fm/music/Madsen</url>
76
+ </artist>
77
+ </track>
78
+ <track>
79
+ <name>Lost in the Post</name>
80
+ <playcount>39</playcount>
81
+ <tagcount></tagcount>
82
+ <mbid></mbid>
83
+ <url>http://www.last.fm/music/The+Wombats/_/Lost+in+the+Post</url>
84
+ <streamable fulltrack="0">1</streamable>
85
+ <artist>
86
+ <name>The Wombats</name>
87
+ <mbid>e105c272-b5d7-4135-82ef-d60bded54345</mbid>
88
+ <url>http://www.last.fm/music/The+Wombats</url>
89
+ </artist>
90
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9690457.jpg</image>
91
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9690457.jpg</image>
92
+ <image size="large">http://userserve-ak.last.fm/serve/126/9690457.jpg</image>
93
+ </track>
94
+ <track>
95
+ <name>Backfire at the Disco</name>
96
+ <playcount>39</playcount>
97
+ <tagcount></tagcount>
98
+ <mbid></mbid>
99
+ <url>http://www.last.fm/music/The+Wombats/_/Backfire+at+the+Disco</url>
100
+ <streamable fulltrack="0">1</streamable>
101
+ <artist>
102
+ <name>The Wombats</name>
103
+ <mbid>e105c272-b5d7-4135-82ef-d60bded54345</mbid>
104
+ <url>http://www.last.fm/music/The+Wombats</url>
105
+ </artist>
106
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9690457.jpg</image>
107
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9690457.jpg</image>
108
+ <image size="large">http://userserve-ak.last.fm/serve/126/9690457.jpg</image>
109
+ </track>
110
+ <track>
111
+ <name>Blow Up</name>
112
+ <playcount>38</playcount>
113
+ <tagcount></tagcount>
114
+ <mbid></mbid>
115
+ <url>http://www.last.fm/music/Slut/_/Blow+Up</url>
116
+ <streamable fulltrack="0">1</streamable>
117
+ <artist>
118
+ <name>Slut</name>
119
+ <mbid>97ec4bef-d716-492a-83a1-4cfed3f7a049</mbid>
120
+ <url>http://www.last.fm/music/Slut</url>
121
+ </artist>
122
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14519159.jpg</image>
123
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14519159.jpg</image>
124
+ <image size="large">http://userserve-ak.last.fm/serve/126/14519159.jpg</image>
125
+ </track>
126
+ <track>
127
+ <name>Fake Tales of San Francisco</name>
128
+ <playcount>38</playcount>
129
+ <tagcount></tagcount>
130
+ <mbid></mbid>
131
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/Fake+Tales+of+San+Francisco</url>
132
+ <streamable fulltrack="0">1</streamable>
133
+ <artist>
134
+ <name>Arctic Monkeys</name>
135
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
136
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
137
+ </artist>
138
+ <image size="small">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
139
+ <image size="medium">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
140
+ <image size="large">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
141
+ </track>
142
+ <track>
143
+ <name>Party in a Forest (Where's Laura?)</name>
144
+ <playcount>38</playcount>
145
+ <tagcount></tagcount>
146
+ <mbid></mbid>
147
+ <url>http://www.last.fm/music/The+Wombats/_/Party+in+a+Forest+%28Where%27s+Laura%3F%29</url>
148
+ <streamable fulltrack="0">0</streamable>
149
+ <artist>
150
+ <name>The Wombats</name>
151
+ <mbid>e105c272-b5d7-4135-82ef-d60bded54345</mbid>
152
+ <url>http://www.last.fm/music/The+Wombats</url>
153
+ </artist>
154
+ </track>
155
+ <track>
156
+ <name>Jaded</name>
157
+ <playcount>37</playcount>
158
+ <tagcount></tagcount>
159
+ <mbid></mbid>
160
+ <url>http://www.last.fm/music/Green+Day/_/Jaded</url>
161
+ <streamable fulltrack="0">1</streamable>
162
+ <artist>
163
+ <name>Green Day</name>
164
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
165
+ <url>http://www.last.fm/music/Green+Day</url>
166
+ </artist>
167
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674829.jpg</image>
168
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674829.jpg</image>
169
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674829.jpg</image>
170
+ </track>
171
+ <track>
172
+ <name>Has It Come to This?</name>
173
+ <playcount>37</playcount>
174
+ <tagcount></tagcount>
175
+ <mbid></mbid>
176
+ <url>http://www.last.fm/music/The+Streets/_/Has+It+Come+to+This%3F</url>
177
+ <streamable fulltrack="0">1</streamable>
178
+ <artist>
179
+ <name>The Streets</name>
180
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
181
+ <url>http://www.last.fm/music/The+Streets</url>
182
+ </artist>
183
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
184
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
185
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
186
+ </track>
187
+ <track>
188
+ <name>1. Die Perfektion (Single Version)</name>
189
+ <playcount>37</playcount>
190
+ <tagcount></tagcount>
191
+ <mbid></mbid>
192
+ <url>http://www.last.fm/music/Madsen/_/1.+Die+Perfektion+%28Single+Version%29</url>
193
+ <streamable fulltrack="0">0</streamable>
194
+ <artist>
195
+ <name>Madsen</name>
196
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
197
+ <url>http://www.last.fm/music/Madsen</url>
198
+ </artist>
199
+ </track>
200
+ <track>
201
+ <name>Banquet (Phones Disco Edit)</name>
202
+ <playcount>37</playcount>
203
+ <tagcount></tagcount>
204
+ <mbid></mbid>
205
+ <url>http://www.last.fm/music/Bloc+Party/_/Banquet+%28Phones+Disco+Edit%29</url>
206
+ <streamable fulltrack="0">1</streamable>
207
+ <artist>
208
+ <name>Bloc Party</name>
209
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
210
+ <url>http://www.last.fm/music/Bloc+Party</url>
211
+ </artist>
212
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8696327.jpg</image>
213
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8696327.jpg</image>
214
+ <image size="large">http://userserve-ak.last.fm/serve/126/8696327.jpg</image>
215
+ </track>
216
+ <track>
217
+ <name>Little Miss Pipedream</name>
218
+ <playcount>36</playcount>
219
+ <tagcount></tagcount>
220
+ <mbid></mbid>
221
+ <url>http://www.last.fm/music/The+Wombats/_/Little+Miss+Pipedream</url>
222
+ <streamable fulltrack="0">1</streamable>
223
+ <artist>
224
+ <name>The Wombats</name>
225
+ <mbid>e105c272-b5d7-4135-82ef-d60bded54345</mbid>
226
+ <url>http://www.last.fm/music/The+Wombats</url>
227
+ </artist>
228
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9690457.jpg</image>
229
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9690457.jpg</image>
230
+ <image size="large">http://userserve-ak.last.fm/serve/126/9690457.jpg</image>
231
+ </track>
232
+ <track>
233
+ <name>Scream Out</name>
234
+ <playcount>36</playcount>
235
+ <tagcount></tagcount>
236
+ <mbid></mbid>
237
+ <url>http://www.last.fm/music/The+Unseen/_/Scream+Out</url>
238
+ <streamable fulltrack="0">0</streamable>
239
+ <artist>
240
+ <name>The Unseen</name>
241
+ <mbid>f4eea5a3-5ce5-4b3a-82ef-884c797b391f</mbid>
242
+ <url>http://www.last.fm/music/The+Unseen</url>
243
+ </artist>
244
+ <image size="small">http://images.amazon.com/images/P/B0008ENJ1A.01.MZZZZZZZ.jpg</image>
245
+ <image size="medium">http://images.amazon.com/images/P/B0008ENJ1A.01.MZZZZZZZ.jpg</image>
246
+ <image size="large">http://images.amazon.com/images/P/B0008ENJ1A.01.MZZZZZZZ.jpg</image>
247
+ </track>
248
+ <track>
249
+ <name>Song No 1</name>
250
+ <playcount>35</playcount>
251
+ <tagcount></tagcount>
252
+ <mbid></mbid>
253
+ <url>http://www.last.fm/music/Trashmonkeys/_/Song+No+1</url>
254
+ <streamable fulltrack="0">0</streamable>
255
+ <artist>
256
+ <name>Trashmonkeys</name>
257
+ <mbid>e475f569-d662-45fc-be1e-2539ab60a094</mbid>
258
+ <url>http://www.last.fm/music/Trashmonkeys</url>
259
+ </artist>
260
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
261
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
262
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
263
+ </track>
264
+ <track>
265
+ <name>All the Small Things</name>
266
+ <playcount>35</playcount>
267
+ <tagcount></tagcount>
268
+ <mbid></mbid>
269
+ <url>http://www.last.fm/music/blink-182/_/All+the+Small+Things</url>
270
+ <streamable fulltrack="1">1</streamable>
271
+ <artist>
272
+ <name>blink-182</name>
273
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
274
+ <url>http://www.last.fm/music/blink-182</url>
275
+ </artist>
276
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634779.jpg</image>
277
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634779.jpg</image>
278
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634779.jpg</image>
279
+ </track>
280
+ <track>
281
+ <name>Fit But You Know It</name>
282
+ <playcount>35</playcount>
283
+ <tagcount></tagcount>
284
+ <mbid></mbid>
285
+ <url>http://www.last.fm/music/The+Streets/_/Fit+But+You+Know+It</url>
286
+ <streamable fulltrack="0">1</streamable>
287
+ <artist>
288
+ <name>The Streets</name>
289
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
290
+ <url>http://www.last.fm/music/The+Streets</url>
291
+ </artist>
292
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12623177.jpg</image>
293
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12623177.jpg</image>
294
+ <image size="large">http://userserve-ak.last.fm/serve/126/12623177.jpg</image>
295
+ </track>
296
+ <track>
297
+ <name>Come Out and Play</name>
298
+ <playcount>35</playcount>
299
+ <tagcount></tagcount>
300
+ <mbid></mbid>
301
+ <url>http://www.last.fm/music/The+Offspring/_/Come+Out+and+Play</url>
302
+ <streamable fulltrack="0">1</streamable>
303
+ <artist>
304
+ <name>The Offspring</name>
305
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
306
+ <url>http://www.last.fm/music/The+Offspring</url>
307
+ </artist>
308
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8675575.jpg</image>
309
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8675575.jpg</image>
310
+ <image size="large">http://userserve-ak.last.fm/serve/126/8675575.jpg</image>
311
+ </track>
312
+ <track>
313
+ <name>Wir beide</name>
314
+ <playcount>35</playcount>
315
+ <tagcount></tagcount>
316
+ <mbid></mbid>
317
+ <url>http://www.last.fm/music/Juli/_/Wir+beide</url>
318
+ <streamable fulltrack="1">1</streamable>
319
+ <artist>
320
+ <name>Juli</name>
321
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
322
+ <url>http://www.last.fm/music/Juli</url>
323
+ </artist>
324
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10035205.jpg</image>
325
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10035205.jpg</image>
326
+ <image size="large">http://userserve-ak.last.fm/serve/126/10035205.jpg</image>
327
+ </track>
328
+ <track>
329
+ <name>The Gentry Cove</name>
330
+ <playcount>35</playcount>
331
+ <tagcount></tagcount>
332
+ <mbid></mbid>
333
+ <url>http://www.last.fm/music/Dirty+Pretty+Things/_/The+Gentry+Cove</url>
334
+ <streamable fulltrack="1">1</streamable>
335
+ <artist>
336
+ <name>Dirty Pretty Things</name>
337
+ <mbid>648615ca-ca74-460d-928a-2bae67ae6d14</mbid>
338
+ <url>http://www.last.fm/music/Dirty+Pretty+Things</url>
339
+ </artist>
340
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8810557.jpg</image>
341
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8810557.jpg</image>
342
+ <image size="large">http://userserve-ak.last.fm/serve/126/8810557.jpg</image>
343
+ </track>
344
+ <track>
345
+ <name>Hit That</name>
346
+ <playcount>35</playcount>
347
+ <tagcount></tagcount>
348
+ <mbid></mbid>
349
+ <url>http://www.last.fm/music/The+Offspring/_/Hit+That</url>
350
+ <streamable fulltrack="0">1</streamable>
351
+ <artist>
352
+ <name>The Offspring</name>
353
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
354
+ <url>http://www.last.fm/music/The+Offspring</url>
355
+ </artist>
356
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23739571.jpg</image>
357
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23739571.jpg</image>
358
+ <image size="large">http://userserve-ak.last.fm/serve/126/23739571.jpg</image>
359
+ </track>
360
+ <track>
361
+ <name>Red Light Indicates Doors Are Secured</name>
362
+ <playcount>35</playcount>
363
+ <tagcount></tagcount>
364
+ <mbid></mbid>
365
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/Red+Light+Indicates+Doors+Are+Secured</url>
366
+ <streamable fulltrack="0">1</streamable>
367
+ <artist>
368
+ <name>Arctic Monkeys</name>
369
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
370
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
371
+ </artist>
372
+ <image size="small">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
373
+ <image size="medium">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
374
+ <image size="large">http://images.amazon.com/images/P/B000BTDMDC.01.MZZZZZZZ.jpg</image>
375
+ </track>
376
+ <track>
377
+ <name>Here Comes the Anxiety</name>
378
+ <playcount>35</playcount>
379
+ <tagcount></tagcount>
380
+ <mbid></mbid>
381
+ <url>http://www.last.fm/music/The+Wombats/_/Here+Comes+the+Anxiety</url>
382
+ <streamable fulltrack="0">1</streamable>
383
+ <artist>
384
+ <name>The Wombats</name>
385
+ <mbid>e105c272-b5d7-4135-82ef-d60bded54345</mbid>
386
+ <url>http://www.last.fm/music/The+Wombats</url>
387
+ </artist>
388
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9690457.jpg</image>
389
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9690457.jpg</image>
390
+ <image size="large">http://userserve-ak.last.fm/serve/126/9690457.jpg</image>
391
+ </track>
392
+ <track>
393
+ <name>Last Resort</name>
394
+ <playcount>35</playcount>
395
+ <tagcount></tagcount>
396
+ <mbid></mbid>
397
+ <url>http://www.last.fm/music/Papa+Roach/_/Last+Resort</url>
398
+ <streamable fulltrack="0">0</streamable>
399
+ <artist>
400
+ <name>Papa Roach</name>
401
+ <mbid>c5eb9407-caeb-4303-b383-6929aa94021c</mbid>
402
+ <url>http://www.last.fm/music/Papa+Roach</url>
403
+ </artist>
404
+ </track>
405
+ <track>
406
+ <name>Weekend Wars</name>
407
+ <playcount>35</playcount>
408
+ <tagcount></tagcount>
409
+ <mbid></mbid>
410
+ <url>http://www.last.fm/music/MGMT/_/Weekend+Wars</url>
411
+ <streamable fulltrack="0">1</streamable>
412
+ <artist>
413
+ <name>MGMT</name>
414
+ <mbid>c485632c-b784-4ee9-8ea1-c5fb365681fc</mbid>
415
+ <url>http://www.last.fm/music/MGMT</url>
416
+ </artist>
417
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22357783.jpg</image>
418
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22357783.jpg</image>
419
+ <image size="large">http://userserve-ak.last.fm/serve/126/22357783.jpg</image>
420
+ </track>
421
+ <track>
422
+ <name>Foxtrot Uniform Charlie Kilo</name>
423
+ <playcount>34</playcount>
424
+ <tagcount></tagcount>
425
+ <mbid></mbid>
426
+ <url>http://www.last.fm/music/Bloodhound+Gang/_/Foxtrot+Uniform+Charlie+Kilo</url>
427
+ <streamable fulltrack="1">1</streamable>
428
+ <artist>
429
+ <name>Bloodhound Gang</name>
430
+ <mbid>b2dbfc09-b332-408b-a235-1850e41971c5</mbid>
431
+ <url>http://www.last.fm/music/Bloodhound+Gang</url>
432
+ </artist>
433
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8751895.jpg</image>
434
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8751895.jpg</image>
435
+ <image size="large">http://userserve-ak.last.fm/serve/126/8751895.jpg</image>
436
+ </track>
437
+ <track>
438
+ <name>Maria</name>
439
+ <playcount>34</playcount>
440
+ <tagcount></tagcount>
441
+ <mbid></mbid>
442
+ <url>http://www.last.fm/music/Green+Day/_/Maria</url>
443
+ <streamable fulltrack="0">1</streamable>
444
+ <artist>
445
+ <name>Green Day</name>
446
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
447
+ <url>http://www.last.fm/music/Green+Day</url>
448
+ </artist>
449
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8672845.jpg</image>
450
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8672845.jpg</image>
451
+ <image size="large">http://userserve-ak.last.fm/serve/126/8672845.jpg</image>
452
+ </track>
453
+ <track>
454
+ <name>The Youth</name>
455
+ <playcount>34</playcount>
456
+ <tagcount></tagcount>
457
+ <mbid></mbid>
458
+ <url>http://www.last.fm/music/MGMT/_/The+Youth</url>
459
+ <streamable fulltrack="0">1</streamable>
460
+ <artist>
461
+ <name>MGMT</name>
462
+ <mbid>c485632c-b784-4ee9-8ea1-c5fb365681fc</mbid>
463
+ <url>http://www.last.fm/music/MGMT</url>
464
+ </artist>
465
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22357783.jpg</image>
466
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22357783.jpg</image>
467
+ <image size="large">http://userserve-ak.last.fm/serve/126/22357783.jpg</image>
468
+ </track>
469
+ <track>
470
+ <name>Dirk, wie ist die Luft dort oben?</name>
471
+ <playcount>34</playcount>
472
+ <tagcount></tagcount>
473
+ <mbid></mbid>
474
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Dirk%2C+wie+ist+die+Luft+dort+oben%3F</url>
475
+ <streamable fulltrack="0">0</streamable>
476
+ <artist>
477
+ <name>Sportfreunde Stiller</name>
478
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
479
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
480
+ </artist>
481
+ </track>
482
+ <track>
483
+ <name>You Fucking Love It</name>
484
+ <playcount>34</playcount>
485
+ <tagcount></tagcount>
486
+ <mbid></mbid>
487
+ <url>http://www.last.fm/music/Dirty+Pretty+Things/_/You+Fucking+Love+It</url>
488
+ <streamable fulltrack="1">1</streamable>
489
+ <artist>
490
+ <name>Dirty Pretty Things</name>
491
+ <mbid>648615ca-ca74-460d-928a-2bae67ae6d14</mbid>
492
+ <url>http://www.last.fm/music/Dirty+Pretty+Things</url>
493
+ </artist>
494
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8810557.jpg</image>
495
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8810557.jpg</image>
496
+ <image size="large">http://userserve-ak.last.fm/serve/126/8810557.jpg</image>
497
+ </track>
498
+ <track>
499
+ <name>2. Vielleicht (Album Version)</name>
500
+ <playcount>34</playcount>
501
+ <tagcount></tagcount>
502
+ <mbid></mbid>
503
+ <url>http://www.last.fm/music/Madsen/_/2.+Vielleicht+%28Album+Version%29</url>
504
+ <streamable fulltrack="0">0</streamable>
505
+ <artist>
506
+ <name>Madsen</name>
507
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
508
+ <url>http://www.last.fm/music/Madsen</url>
509
+ </artist>
510
+ </track>
511
+ <track>
512
+ <name>Never Forever</name>
513
+ <playcount>33</playcount>
514
+ <tagcount></tagcount>
515
+ <mbid></mbid>
516
+ <url>http://www.last.fm/music/Blackmail/_/Never+Forever</url>
517
+ <streamable fulltrack="0">1</streamable>
518
+ <artist>
519
+ <name>Blackmail</name>
520
+ <mbid>d415628d-8c84-453b-8a75-4816b088dbc9</mbid>
521
+ <url>http://www.last.fm/music/Blackmail</url>
522
+ </artist>
523
+ <image size="small">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
524
+ <image size="medium">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
525
+ <image size="large">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
526
+ </track>
527
+ <track>
528
+ <name>Love You Better</name>
529
+ <playcount>33</playcount>
530
+ <tagcount></tagcount>
531
+ <mbid></mbid>
532
+ <url>http://www.last.fm/music/The+Maccabees/_/Love+You+Better</url>
533
+ <streamable fulltrack="1">1</streamable>
534
+ <artist>
535
+ <name>The Maccabees</name>
536
+ <mbid>83b86967-6b1a-4ca8-9cf0-c7cfe047ef3f</mbid>
537
+ <url>http://www.last.fm/music/The+Maccabees</url>
538
+ </artist>
539
+ </track>
540
+ <track>
541
+ <name>Brain Stew</name>
542
+ <playcount>33</playcount>
543
+ <tagcount></tagcount>
544
+ <mbid></mbid>
545
+ <url>http://www.last.fm/music/Green+Day/_/Brain+Stew</url>
546
+ <streamable fulltrack="0">1</streamable>
547
+ <artist>
548
+ <name>Green Day</name>
549
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
550
+ <url>http://www.last.fm/music/Green+Day</url>
551
+ </artist>
552
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674829.jpg</image>
553
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674829.jpg</image>
554
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674829.jpg</image>
555
+ </track>
556
+ <track>
557
+ <name>Lauth anhören</name>
558
+ <playcount>33</playcount>
559
+ <tagcount></tagcount>
560
+ <mbid></mbid>
561
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Lauth+anh%C3%B6ren</url>
562
+ <streamable fulltrack="0">0</streamable>
563
+ <artist>
564
+ <name>Sportfreunde Stiller</name>
565
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
566
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
567
+ </artist>
568
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25205149.jpg</image>
569
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25205149.jpg</image>
570
+ <image size="large">http://userserve-ak.last.fm/serve/126/25205149.jpg</image>
571
+ </track>
572
+ <track>
573
+ <name>Ralph Wiggum</name>
574
+ <playcount>33</playcount>
575
+ <tagcount></tagcount>
576
+ <mbid></mbid>
577
+ <url>http://www.last.fm/music/Bloodhound+Gang/_/Ralph+Wiggum</url>
578
+ <streamable fulltrack="1">1</streamable>
579
+ <artist>
580
+ <name>Bloodhound Gang</name>
581
+ <mbid>b2dbfc09-b332-408b-a235-1850e41971c5</mbid>
582
+ <url>http://www.last.fm/music/Bloodhound+Gang</url>
583
+ </artist>
584
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8751895.jpg</image>
585
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8751895.jpg</image>
586
+ <image size="large">http://userserve-ak.last.fm/serve/126/8751895.jpg</image>
587
+ </track>
588
+ <track>
589
+ <name>Splinter</name>
590
+ <playcount>33</playcount>
591
+ <tagcount></tagcount>
592
+ <mbid></mbid>
593
+ <url>http://www.last.fm/music/Blackmail/_/Splinter</url>
594
+ <streamable fulltrack="0">1</streamable>
595
+ <artist>
596
+ <name>Blackmail</name>
597
+ <mbid>d415628d-8c84-453b-8a75-4816b088dbc9</mbid>
598
+ <url>http://www.last.fm/music/Blackmail</url>
599
+ </artist>
600
+ <image size="small">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
601
+ <image size="medium">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
602
+ <image size="large">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
603
+ </track>
604
+ <track>
605
+ <name>Nordish By Nature</name>
606
+ <playcount>33</playcount>
607
+ <tagcount></tagcount>
608
+ <mbid></mbid>
609
+ <url>http://www.last.fm/music/Fettes+Brot/_/Nordish+By+Nature</url>
610
+ <streamable fulltrack="0">0</streamable>
611
+ <artist>
612
+ <name>Fettes Brot</name>
613
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
614
+ <url>http://www.last.fm/music/Fettes+Brot</url>
615
+ </artist>
616
+ </track>
617
+ <track>
618
+ <name>Last of the Small Town Playboys</name>
619
+ <playcount>33</playcount>
620
+ <tagcount></tagcount>
621
+ <mbid></mbid>
622
+ <url>http://www.last.fm/music/Dirty+Pretty+Things/_/Last+of+the+Small+Town+Playboys</url>
623
+ <streamable fulltrack="1">1</streamable>
624
+ <artist>
625
+ <name>Dirty Pretty Things</name>
626
+ <mbid>648615ca-ca74-460d-928a-2bae67ae6d14</mbid>
627
+ <url>http://www.last.fm/music/Dirty+Pretty+Things</url>
628
+ </artist>
629
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8810557.jpg</image>
630
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8810557.jpg</image>
631
+ <image size="large">http://userserve-ak.last.fm/serve/126/8810557.jpg</image>
632
+ </track>
633
+ <track>
634
+ <name>Me &amp; My Shadow</name>
635
+ <playcount>33</playcount>
636
+ <tagcount></tagcount>
637
+ <mbid></mbid>
638
+ <url>http://www.last.fm/music/Blackmail/_/Me%2B%2526%2BMy%2BShadow</url>
639
+ <streamable fulltrack="0">0</streamable>
640
+ <artist>
641
+ <name>Blackmail</name>
642
+ <mbid>d415628d-8c84-453b-8a75-4816b088dbc9</mbid>
643
+ <url>http://www.last.fm/music/Blackmail</url>
644
+ </artist>
645
+ </track>
646
+ <track>
647
+ <name>Spaceman</name>
648
+ <playcount>33</playcount>
649
+ <tagcount></tagcount>
650
+ <mbid></mbid>
651
+ <url>http://www.last.fm/music/The+Killers/_/Spaceman</url>
652
+ <streamable fulltrack="1">1</streamable>
653
+ <artist>
654
+ <name>The Killers</name>
655
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
656
+ <url>http://www.last.fm/music/The+Killers</url>
657
+ </artist>
658
+ </track>
659
+ <track>
660
+ <name>Wondering</name>
661
+ <playcount>33</playcount>
662
+ <tagcount></tagcount>
663
+ <mbid></mbid>
664
+ <url>http://www.last.fm/music/Dirty+Pretty+Things/_/Wondering</url>
665
+ <streamable fulltrack="1">1</streamable>
666
+ <artist>
667
+ <name>Dirty Pretty Things</name>
668
+ <mbid>648615ca-ca74-460d-928a-2bae67ae6d14</mbid>
669
+ <url>http://www.last.fm/music/Dirty+Pretty+Things</url>
670
+ </artist>
671
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8810557.jpg</image>
672
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8810557.jpg</image>
673
+ <image size="large">http://userserve-ak.last.fm/serve/126/8810557.jpg</image>
674
+ </track>
675
+ <track>
676
+ <name>School Uniforms</name>
677
+ <playcount>32</playcount>
678
+ <tagcount></tagcount>
679
+ <mbid></mbid>
680
+ <url>http://www.last.fm/music/The+Wombats/_/School+Uniforms</url>
681
+ <streamable fulltrack="0">1</streamable>
682
+ <artist>
683
+ <name>The Wombats</name>
684
+ <mbid>e105c272-b5d7-4135-82ef-d60bded54345</mbid>
685
+ <url>http://www.last.fm/music/The+Wombats</url>
686
+ </artist>
687
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9690457.jpg</image>
688
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9690457.jpg</image>
689
+ <image size="large">http://userserve-ak.last.fm/serve/126/9690457.jpg</image>
690
+ </track>
691
+ <track>
692
+ <name>Away With the Fairies</name>
693
+ <playcount>32</playcount>
694
+ <tagcount></tagcount>
695
+ <mbid></mbid>
696
+ <url>http://www.last.fm/music/Blackmail/_/Away+With+the+Fairies</url>
697
+ <streamable fulltrack="0">1</streamable>
698
+ <artist>
699
+ <name>Blackmail</name>
700
+ <mbid>d415628d-8c84-453b-8a75-4816b088dbc9</mbid>
701
+ <url>http://www.last.fm/music/Blackmail</url>
702
+ </artist>
703
+ <image size="small">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
704
+ <image size="medium">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
705
+ <image size="large">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
706
+ </track>
707
+ <track>
708
+ <name>Couldn't Care Less</name>
709
+ <playcount>32</playcount>
710
+ <tagcount></tagcount>
711
+ <mbid></mbid>
712
+ <url>http://www.last.fm/music/Blackmail/_/Couldn%27t+Care+Less</url>
713
+ <streamable fulltrack="0">1</streamable>
714
+ <artist>
715
+ <name>Blackmail</name>
716
+ <mbid>d415628d-8c84-453b-8a75-4816b088dbc9</mbid>
717
+ <url>http://www.last.fm/music/Blackmail</url>
718
+ </artist>
719
+ <image size="small">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
720
+ <image size="medium">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
721
+ <image size="large">http://images.amazon.com/images/P/B000C0WXFI.01.MZZZZZZZ.jpg</image>
722
+ </track>
723
+ <track>
724
+ <name>Jacqueline</name>
725
+ <playcount>32</playcount>
726
+ <tagcount></tagcount>
727
+ <mbid></mbid>
728
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/Jacqueline</url>
729
+ <streamable fulltrack="0">1</streamable>
730
+ <artist>
731
+ <name>Franz Ferdinand</name>
732
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
733
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
734
+ </artist>
735
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22427459.jpg</image>
736
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22427459.jpg</image>
737
+ <image size="large">http://userserve-ak.last.fm/serve/126/22427459.jpg</image>
738
+ </track>
739
+ <track>
740
+ <name>When I Come Around</name>
741
+ <playcount>32</playcount>
742
+ <tagcount></tagcount>
743
+ <mbid></mbid>
744
+ <url>http://www.last.fm/music/Green+Day/_/When+I+Come+Around</url>
745
+ <streamable fulltrack="0">1</streamable>
746
+ <artist>
747
+ <name>Green Day</name>
748
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
749
+ <url>http://www.last.fm/music/Green+Day</url>
750
+ </artist>
751
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8624469.jpg</image>
752
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8624469.jpg</image>
753
+ <image size="large">http://userserve-ak.last.fm/serve/126/8624469.jpg</image>
754
+ </track>
755
+ <track>
756
+ <name>Emanuela</name>
757
+ <playcount>31</playcount>
758
+ <tagcount></tagcount>
759
+ <mbid></mbid>
760
+ <url>http://www.last.fm/music/Fettes+Brot/_/Emanuela</url>
761
+ <streamable fulltrack="0">1</streamable>
762
+ <artist>
763
+ <name>Fettes Brot</name>
764
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
765
+ <url>http://www.last.fm/music/Fettes+Brot</url>
766
+ </artist>
767
+ <image size="small">http://images.amazon.com/images/P/B0007RA6Z0.01.MZZZZZZZ.jpg</image>
768
+ <image size="medium">http://images.amazon.com/images/P/B0007RA6Z0.01.MZZZZZZZ.jpg</image>
769
+ <image size="large">http://images.amazon.com/images/P/B0007RA6Z0.01.MZZZZZZZ.jpg</image>
770
+ </track>
771
+ </tracks></lfm>