<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on Download eSnips Mp3 Songs &amp; Videos | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/16714</link>
    <description>Recent comments on userscript: Download eSnips Mp3 Songs &amp; Videos</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>Add links to Listing page, replied by nguyenphuphi</title>
      <description>&lt;p&gt;The script works great. However, I found certain pages have links but no download links so I updated the script to add the download links.&lt;/p&gt;

&lt;p&gt;Phi&lt;/p&gt;

&lt;p&gt;-----script--------------------
&lt;br /&gt;// ==UserScript==
&lt;br /&gt;// @name		Download esnips Mp3 Songs &amp;amp; Videos
&lt;br /&gt;// @author		Rewritten by Phanboy - Original by Umakanthan Chandran
&lt;br /&gt;// @namespace		&lt;a href=&quot;http://www.tc.umn.edu/~phanx068/&quot;&gt;http://www.tc.umn.edu/~phanx068/&lt;/a&gt;
&lt;br /&gt;// @description		Download mp3 songs and videos from esnips.com - modified to make it integrate seamlessly within esnips.  Download link now shows up on ALL pages &amp;amp; now SEARCH results!
&lt;br /&gt;// @include		&lt;a href=&quot;http://*esnips.com/&quot;&gt;http://*esnips.com/&lt;/a&gt;*
&lt;br /&gt;// ==/UserScript==
&lt;br /&gt;////////////////// DO NOT EDIT BELOW //////////////////
&lt;br /&gt;var source_location = &quot;&lt;a href=&quot;http://userscripts.org/scripts/show/16714&quot;&gt;&lt;br /&gt;var current_version = &quot;2.3.3&quot;;
&lt;br /&gt;var latest_version = &quot; &quot;;
&lt;br /&gt;var gm_updateparam = &quot;phanboy_esnips_lastupdatecheck&quot;;
&lt;br /&gt;var lastupdatecheck = GM_getValue(gm_updateparam, &quot;never&quot;);
&lt;br /&gt;function popBox(el) {
&lt;br /&gt;	var a = document.createElement('a');
&lt;br /&gt;	a.setAttribute('class','image-link');
&lt;br /&gt;	a.setAttribute('id','share');
&lt;br /&gt;	a.setAttribute('href','javascript:void(0)');
&lt;br /&gt;	a.setAttribute('style','font-size:10px');
&lt;br /&gt;	a.innerHTML = 'Feedback';
&lt;br /&gt;	a.addEventListener('click',function () { window.open(&quot;&lt;a href=&quot;http://www.tc.umn.edu/~phanx068/home/popup.php&quot;&gt;&lt;br /&gt;	el.appendChild(a);
&lt;br /&gt;}
&lt;br /&gt;function GetNewVersion(el) {
&lt;br /&gt;	var a = document.createElement('a');
&lt;br /&gt;	a.setAttribute('class','image-link');
&lt;br /&gt;	a.setAttribute('id','flag');
&lt;br /&gt;	a.setAttribute('href',source_location);	
&lt;br /&gt;	a.setAttribute('target','_blank');
&lt;br /&gt;	a.innerHTML = 'New version!';
&lt;br /&gt;	a.addEventListener('click',function () { var today = new Date(); GM_setValue(gm_updateparam, String(today)); },false);
&lt;br /&gt;	el.appendChild(a);
&lt;br /&gt;}
&lt;br /&gt;function CheckForUpdate() {   
&lt;br /&gt;	var today = new Date();
&lt;br /&gt;	var one_min = 60 * 1000;
&lt;br /&gt;	if (lastupdatecheck != &quot;never&quot;) {
&lt;br /&gt;		var t = today.getTime();
&lt;br /&gt;		var luc = new Date(lastupdatecheck).getTime();
&lt;br /&gt;		var interval = ((t - luc)/one_min);
&lt;br /&gt;		if (interval &gt;= 10)
&lt;br /&gt;			checkVersion();
&lt;br /&gt;	}
&lt;br /&gt;	else {
&lt;br /&gt;		checkVersion();
&lt;br /&gt;	}
&lt;br /&gt;}
&lt;br /&gt;function checkVersion() {
&lt;br /&gt;	GM_xmlhttpRequest({
&lt;br /&gt;    		method: 'GET',
&lt;br /&gt;    		url: source_location,
&lt;br /&gt;    		headers: {
&lt;br /&gt;			'User-agent': 'Mozilla/4.0',
&lt;br /&gt;			'Accept': 'text/html',
&lt;br /&gt;    		},
&lt;br /&gt;   		onload: function(e) {
&lt;br /&gt;			var page = document.createElement(&quot;body&quot;);
&lt;br /&gt;			page.innerHTML += e.responseText;
&lt;br /&gt;			var content = page.getElementsByTagName(&quot;div&quot;);
&lt;br /&gt;			var latest_version = content[16].innerHTML;
&lt;br /&gt;			if(current_version != latest_version &amp;amp;&amp;amp; latest_version != &quot;undefined&quot;)
&lt;br /&gt;			{
&lt;br /&gt;				findPlace(&quot;div&quot;, &quot;options&quot;, &quot;options&quot;, GetNewVersion);
&lt;br /&gt;			}
&lt;br /&gt;			else if (current_version == latest_version) {
&lt;br /&gt;				var today = new Date();
&lt;br /&gt;				GM_setValue(gm_updateparam, String(today));
&lt;br /&gt;			}
&lt;br /&gt;		}
&lt;br /&gt;  	});
&lt;br /&gt;}
&lt;br /&gt;function addLink2(el, t){
&lt;br /&gt;	var urlinfo = el.href.split(&quot;/&quot;);
&lt;br /&gt;	var url = urlinfo[4];
&lt;br /&gt;	if (urlinfo[3] != 'doc')
&lt;br /&gt;		return true;
&lt;br /&gt;	var ninfo = document.createElement(&quot;div&quot;);
&lt;br /&gt;	var parent = el.parentNode;
&lt;br /&gt;	parent.appendChild(document.createElement(&quot;br&quot;));
&lt;br /&gt;	ninfo.setAttribute('class', 'options');
&lt;br /&gt;	insertLink(ninfo, url, t);
&lt;br /&gt;	parent.appendChild(ninfo);
&lt;br /&gt;	return true;
&lt;br /&gt;}
&lt;br /&gt;function addLink(el, t){
&lt;br /&gt;	var url = el.getElementsByTagName(&quot;a&quot;)[0].href.split(&quot;/&quot;)[4];
&lt;br /&gt;	var ninfo = document.createElement(&quot;div&quot;);
&lt;br /&gt;	el.appendChild(document.createElement(&quot;br&quot;));
&lt;br /&gt;	ninfo.setAttribute('class', 'options');
&lt;br /&gt;	insertLink(ninfo, url, t);
&lt;br /&gt;	el.appendChild(ninfo);
&lt;br /&gt;	return true;
&lt;br /&gt;}
&lt;br /&gt;function findPlace(tag, class, class2, func) {
&lt;br /&gt;	var TF = new Array();
&lt;br /&gt;	var fx = func;
&lt;br /&gt;	var els = document.getElementsByTagName(tag);
&lt;br /&gt;	var o = 0;
&lt;br /&gt;	for (i = 0; i &amp;lt; els.length; i++) {
&lt;br /&gt;		var el = els[i];
&lt;br /&gt;		if (el.getAttribute('class') == class || el.getAttribute('class') == class2) {
&lt;br /&gt;			TF[o++] = fx(el, el.getAttribute('class'));
&lt;br /&gt;		}
&lt;br /&gt;	}
&lt;br /&gt;if (TF == undefined)
&lt;br /&gt;	return false;
&lt;br /&gt;	else
&lt;br /&gt;	return TF;
&lt;br /&gt;}
&lt;br /&gt;function include_css(css_file) {
&lt;br /&gt;	var css = document.createElement('link');
&lt;br /&gt;	css.setAttribute('rel', 'stylesheet');
&lt;br /&gt;	css.setAttribute('type', 'text/css');
&lt;br /&gt;	css.setAttribute('href', css_file);
&lt;br /&gt;	document.getElementsByTagName('head')[0].appendChild(css);
&lt;br /&gt;}
&lt;br /&gt;function addDL(el, t) {
&lt;br /&gt;    var pattern = new RegExp('\\bM[A-Z,3]* W[a-z]*\\b');
&lt;br /&gt;	if (pattern.test(document.body.innerHTML) &amp;amp;&amp;amp; t == &quot;info-block options&quot;)
&lt;br /&gt;		var t = &quot;audioThumb&quot;;
&lt;br /&gt;	var url = document.getElementById(&quot;share&quot;).href.split(&quot;/&quot;)[5];
&lt;br /&gt;	var oDL = document.getElementById(&quot;download&quot;);
&lt;br /&gt;	if (oDL != null) return false;
&lt;br /&gt;	insertLink(el, url, t);
&lt;br /&gt;	inel = el.getElementsByTagName(&quot;div&quot;);
&lt;br /&gt;	el.appendChild(inel[0]);
&lt;br /&gt;	return false;
&lt;br /&gt;}
&lt;br /&gt;function insertLink(n, link, t) {
&lt;br /&gt;	var a = document.createElement('a');
&lt;br /&gt;	a.setAttribute('class','image-link');
&lt;br /&gt;	a.setAttribute('id','download');
&lt;br /&gt;	a.setAttribute('href','javascript:void(0)');
&lt;br /&gt;	if (t != &quot;audioThumb&quot; &amp;amp;&amp;amp; t != &quot;CommandLink&quot;)
&lt;br /&gt;		a.setAttribute('href','&lt;a href=&quot;http://www.esnips.com/nsdoc/&quot;&gt;http://www.esnips.com/nsdoc/&lt;/a&gt;' + link);
&lt;br /&gt;	else
&lt;br /&gt;		a.addEventListener('click',function () { GM_openInTab('&lt;a href=&quot;http://www.esnips.com/nsdoc/&quot;&gt;http://www.esnips.com/nsdoc/&lt;/a&gt;' + link + '/ts_id/' + new Date().getTime() + '/ns_flash/file88.mp3') },false);
&lt;br /&gt;	a.innerHTML = 'Download';
&lt;br /&gt;	n.appendChild(document.createElement('br'));
&lt;br /&gt;	n.appendChild(a);
&lt;br /&gt;}
&lt;br /&gt;function getEl(el) {
&lt;br /&gt;	return el;
&lt;br /&gt;}
&lt;br /&gt;include_css(&quot;&lt;a href=&quot;http://www.esnips.com/viewdocument/style15.css&quot;&gt;&lt;br /&gt;if (findPlace(&quot;div&quot;, &quot;info-block options&quot;, &quot;info-block options&quot;, addDL) == false)
&lt;br /&gt;	findPlace(&quot;div&quot;, &quot;fileThumb&quot;, &quot;audioThumb&quot;, addLink);
&lt;br /&gt;findPlace(&quot;div&quot;, &quot;options&quot;, &quot;options&quot;, popBox);
&lt;br /&gt;findPlace(&quot;a&quot;, &quot;CommandLink&quot;, &quot;CommandLink&quot;, addLink2);
&lt;br /&gt;CheckForUpdate();
&lt;br /&gt;-----script--------------------&lt;/p&gt;</description>
      <pubDate>Fri, 14 Aug 2009 17:00:25 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:33103:158367</guid>
      <author>nguyenphuphi</author>
      <link>http://userscripts.org/posts/158367</link>
    </item>
    <item>
      <title>Does it work in opera?, replied by AlexCeed</title>
      <description>&lt;p&gt;I tried it but it doesn't work because i can't find the download button. Is it me or the script doesn't work on opera?&lt;/p&gt;</description>
      <pubDate>Wed, 04 Feb 2009 23:41:44 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:21311:94157</guid>
      <author>AlexCeed</author>
      <link>http://userscripts.org/posts/94157</link>
    </item>
    <item>
      <title>Trouble with eSnips download, replied by Phanboy</title>
      <description>&lt;p&gt;it's because QuickTime already downloaded the file such as why when you try to download again, the link changes.  It's best to disable QuickTime so then you get directly linked to the mp3.&lt;/p&gt;</description>
      <pubDate>Fri, 23 Jan 2009 01:04:13 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:18739:91434</guid>
      <author>Phanboy</author>
      <link>http://userscripts.org/posts/91434</link>
    </item>
    <item>
      <title>Trouble with eSnips download, replied by weremyjeber</title>
      <description>&lt;p&gt;Hi. I'm trying to download this song: &lt;a href=&quot;http://www.esnips.com/doc/d095021e-e329-4a0a-aef2-66c31a353eee/15---OST---Cuore-Sacro---Bonus-Track-(Andrea-Guerra&quot;&gt;http://www.esnips.com/doc/d095021e-e329-4a0a-ae...&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;I'm using Firefox 3 on Mac OS Leopard. I installed your script and when I click the download link on the above page, it brings me to this page where QuickTime starts playing the file: &lt;a href=&quot;http://www.esnips.com/nsdoc/d095021e-e329-4a0a-aef2-66c31a353eee/ts_id/1229212807061/ns_flash/file88.mp3&quot;&gt;http://www.esnips.com/nsdoc/d095021e-e329-4a0a-...&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;However when I download this all I get is a small 32k mp3 file that doesn't play. Any thoughts on what is going wrong?&lt;/p&gt;

&lt;p&gt;Thanks so much.&lt;/p&gt;</description>
      <pubDate>Tue, 09 Dec 2008 05:42:49 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:18739:82149</guid>
      <author>weremyjeber</author>
      <link>http://userscripts.org/posts/82149</link>
    </item>
    <item>
      <title>Archived Comments, replied by Ragavendra</title>
      <description>&lt;p&gt;Awesome Work..............High quality audio can be played and same can be downloaded from eSnips...........&lt;/p&gt;</description>
      <pubDate>Tue, 21 Oct 2008 16:50:11 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12963:39146</guid>
      <author>Ragavendra</author>
      <link>http://userscripts.org/posts/39146</link>
    </item>
    <item>
      <title>Archived Comments, replied by Phanboy</title>
      <description>&lt;p&gt;If you're seeing a new version, ignore it for now because userscripts.org changed something on their site that's making my update script act funky.&lt;/p&gt;</description>
      <pubDate>Thu, 09 Oct 2008 13:04:56 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12963:39147</guid>
      <author>Phanboy</author>
      <link>http://userscripts.org/posts/39147</link>
    </item>
    <item>
      <title>Archived Comments, replied by Phanboy</title>
      <description>&lt;p&gt;LMAO it was such a simple fix.  thanks for the reference, but i didn't need to read and do any of that :)&lt;/p&gt;</description>
      <pubDate>Wed, 18 Jun 2008 03:05:46 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12963:39148</guid>
      <author>Phanboy</author>
      <link>http://userscripts.org/posts/39148</link>
    </item>
    <item>
      <title>Archived Comments, replied by Phanboy</title>
      <description>&lt;p&gt;woo esnips is at it again -_-.  i'll get on it!&lt;/p&gt;</description>
      <pubDate>Wed, 18 Jun 2008 03:00:34 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12963:39149</guid>
      <author>Phanboy</author>
      <link>http://userscripts.org/posts/39149</link>
    </item>
    <item>
      <title>Archived Comments, replied by imp0steur</title>
      <description>&lt;p&gt;ok now I have again modified my link generator .. check it out here &lt;a href=&quot;http://www.zuhaib.in/how-to/esnips-download-link-generator/&quot;&gt;http://www.zuhaib.in/how-to/esnips-download-lin...&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 05 Jun 2008 09:59:57 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12963:39150</guid>
      <author>imp0steur</author>
      <link>http://userscripts.org/posts/39150</link>
    </item>
    <item>
      <title>Archived Comments, replied by Sacx</title>
      <description>&lt;p&gt;The script does not work anymore :(&lt;/p&gt;</description>
      <pubDate>Wed, 04 Jun 2008 19:00:04 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12963:39151</guid>
      <author>Sacx</author>
      <link>http://userscripts.org/posts/39151</link>
    </item>
    <item>
      <title>Archived Comments, replied by Zardy</title>
      <description>&lt;p&gt;u rock phanboy!!! :)&lt;/p&gt;</description>
      <pubDate>Sat, 17 May 2008 08:58:57 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12963:39152</guid>
      <author>Zardy</author>
      <link>http://userscripts.org/posts/39152</link>
    </item>
    <item>
      <title>Archived Comments, replied by raymonium</title>
      <description>&lt;p&gt;nice script! works like a charm... too bad i am not familiar with java script to modify anything.. really like that integrated &quot;download link&quot; feature... keep up the good work&lt;/p&gt;</description>
      <pubDate>Wed, 30 Apr 2008 09:04:01 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12963:39153</guid>
      <author>raymonium</author>
      <link>http://userscripts.org/posts/39153</link>
    </item>
    <item>
      <title>Archived Comments, replied by Phanboy</title>
      <description>&lt;p&gt;Irfan Gazi, you need the Greasemonkey extension for Firefox.  Then just click the install button to install.&lt;/p&gt;</description>
      <pubDate>Sat, 26 Apr 2008 03:45:54 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12963:39154</guid>
      <author>Phanboy</author>
      <link>http://userscripts.org/posts/39154</link>
    </item>
    <item>
      <title>Archived Comments, replied by Irfan Gazi</title>
      <description>&lt;p&gt;How do i install the scripts, please help&lt;/p&gt;</description>
      <pubDate>Thu, 24 Apr 2008 10:33:36 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12963:39155</guid>
      <author>Irfan Gazi</author>
      <link>http://userscripts.org/posts/39155</link>
    </item>
    <item>
      <title>Archived Comments, replied by Phanboy</title>
      <description>&lt;p&gt;nice find raymonium!  i've been too busy with school to properly find a fix for this, but this has some useful info.  i'll see if i can churn something out by tonight.&lt;/p&gt;</description>
      <pubDate>Wed, 23 Apr 2008 20:01:15 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12963:39156</guid>
      <author>Phanboy</author>
      <link>http://userscripts.org/posts/39156</link>
    </item>
    <item>
      <title>Archived Comments, replied by raymonium</title>
      <description>&lt;p&gt;phanboy, indeed they did change their file location... anyway, i found this on google:
&lt;br /&gt;&lt;a href=&quot;http://www.zuhaib.in/how-to/esnips-trick-explained/&quot;&gt;http://www.zuhaib.in/how-to/esnips-trick-explai...&lt;/a&gt;
&lt;br /&gt;might help u create a new script??&lt;/p&gt;</description>
      <pubDate>Sun, 20 Apr 2008 02:50:26 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12963:39157</guid>
      <author>raymonium</author>
      <link>http://userscripts.org/posts/39157</link>
    </item>
    <item>
      <title>Archived Comments, replied by Phanboy</title>
      <description>&lt;p&gt;Thanks for telling me.  I'll take a look at it.  It seems esnips has yet again changed the way it links its files.&lt;/p&gt;</description>
      <pubDate>Wed, 02 Apr 2008 01:56:07 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12963:39158</guid>
      <author>Phanboy</author>
      <link>http://userscripts.org/posts/39158</link>
    </item>
    <item>
      <title>Archived Comments, replied by Zardy</title>
      <description>&lt;p&gt;sorry, i hve grease monkey and firefox but its still not working, the page just refreshes&lt;/p&gt;</description>
      <pubDate>Tue, 01 Apr 2008 12:50:11 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12963:39159</guid>
      <author>Zardy</author>
      <link>http://userscripts.org/posts/39159</link>
    </item>
    <item>
      <title>Archived Comments, replied by Phanboy</title>
      <description>&lt;p&gt;if you installed this version 2.2.0 for firefox version of greasemonkey, it should be working.  the link should show up as 'javascript:void(0)' and if you click on it, it should download the file.&lt;/p&gt;</description>
      <pubDate>Wed, 19 Mar 2008 17:41:45 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12963:39160</guid>
      <author>Phanboy</author>
      <link>http://userscripts.org/posts/39160</link>
    </item>
    <item>
      <title>Archived Comments, replied by Zardy</title>
      <description>&lt;p&gt;the download button is there but it is not working. why?&lt;/p&gt;</description>
      <pubDate>Wed, 19 Mar 2008 10:35:27 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12963:39161</guid>
      <author>Zardy</author>
      <link>http://userscripts.org/posts/39161</link>
    </item>
    <item>
      <title>Archived Comments, replied by Phanboy</title>
      <description>&lt;p&gt;I have a feeling esnips is watching me... o_o&lt;/p&gt;</description>
      <pubDate>Mon, 17 Mar 2008 20:40:53 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12963:39162</guid>
      <author>Phanboy</author>
      <link>http://userscripts.org/posts/39162</link>
    </item>
    <item>
      <title>Archived Comments, replied by edg:A/H:</title>
      <description>&lt;p&gt;No, it isn't working. At least, it seems completely and totally broken.&lt;/p&gt;

&lt;p&gt;I can't get the DL link to appear. I'm using Opera and have the .user.js script in C:\js\, where Opera is configured to look for scripts.&lt;/p&gt;

&lt;p&gt;Fixing it would be very, very greatly appreciated, I have a near impossible to find soundtrack (never given an official release, at that!) to download.&lt;/p&gt;</description>
      <pubDate>Mon, 17 Mar 2008 15:32:04 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12963:39163</guid>
      <author>edg:A/H:</author>
      <link>http://userscripts.org/posts/39163</link>
    </item>
    <item>
      <title>Archived Comments, replied by Phanboy</title>
      <description>&lt;p&gt;Nice move on esnips implementing their own flash player instead of using crappy windows media player.  Since no one is saying anything, I'm guessing the script still works and I'm not gonna bother to update anything.&lt;/p&gt;</description>
      <pubDate>Sun, 16 Mar 2008 16:53:23 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12963:39164</guid>
      <author>Phanboy</author>
      <link>http://userscripts.org/posts/39164</link>
    </item>
    <item>
      <title>Archived Comments, replied by Phanboy</title>
      <description>&lt;p&gt;If you're using another 'automatic update script' all I can tell you from experience is that it's buggy and crap lol.  I've tried those before and they don't seem to work too well, that's why I have implemented a built-in update script that's specifically for this script.  I plan to do this for other scripts that I'm going to release.&lt;/p&gt;</description>
      <pubDate>Wed, 20 Feb 2008 04:12:28 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12963:39165</guid>
      <author>Phanboy</author>
      <link>http://userscripts.org/posts/39165</link>
    </item>
    <item>
      <title>Archived Comments, replied by Yogendra Joshi</title>
      <description>&lt;p&gt;BTW, i did not get the updated version automatically even though i have the automatic update script running... you can tell why?&lt;/p&gt;</description>
      <pubDate>Mon, 18 Feb 2008 13:26:37 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:12963:39166</guid>
      <author>Yogendra Joshi</author>
      <link>http://userscripts.org/posts/39166</link>
    </item>
  </channel>
</rss>
