<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: Postscript code for epicycloid?</title>
	<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid/</link>
	<description>Comments on Ask MetaFilter post Postscript code for epicycloid?</description>
	<pubDate>Sun, 19 Feb 2006 20:01:40 -0800</pubDate>
	<lastBuildDate>Sun, 19 Feb 2006 20:01:40 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: Postscript code for epicycloid?</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid</link>	
		<description>I want a true vector-based (i.e., not merely a series of thousands of line segments) Postscript or Illustrator file of an &lt;a href=&quot;http://mathworld.wolfram.com/Epicycloid.html&quot;&gt;epicycloid&lt;/a&gt; where a=5, b=2.  &lt;br /&gt;&lt;br /&gt; &lt;a href=&quot;http://www.3e.org/logo/epicycloid-5-2.gif&quot;&gt;This is the image I&apos;m after.&lt;/a&gt;  The equations for an epicycloid a=5,b=2 work out to [x=7cos(&#952;)-2cos(7&#952;/2), y=7sin(&#952;)-2sin(7&#952;/2)], &#952;=0..4&#960;.&lt;br&gt;
&lt;br&gt;
I have no problem creating this in Grapher or Matlab or Maple or what have you using that equation, but if I try to export an EPS file, what I get is essentially a high resolution bitmap &#8212; a list of thousands of straight lines that make a facsimile of the shape if it&apos;s not enlarged too much.&lt;br&gt;
&lt;br&gt;
Does anyone have enough of a command of Postscript to actually write up the code that would generate the &lt;b&gt;true&lt;/b&gt; vector representation? Is that even possible in postscript?</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2006:site.32935</guid>
		<pubDate>Sun, 19 Feb 2006 19:51:28 -0800</pubDate>
		<dc:creator>dmd</dc:creator>
		
			<category>postscript</category>
		
			<category>mathematics</category>
		
			<category>geometry</category>
		
			<category>spirograph</category>
		
			<category>epicycloid</category>
		
			<category>solved</category>
		
			<category>resolved</category>
		
	</item> <item>
		<title>By: fandango_matt</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#513852</link>	
		<description>Do you need this as editable vector art (Adobe Illustrator .ai or .eps), or as a PostScript (.ps) file?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-513852</guid>
		<pubDate>Sun, 19 Feb 2006 20:01:40 -0800</pubDate>
		<dc:creator>fandango_matt</dc:creator>
	</item><item>
		<title>By: majick</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#513853</link>	
		<description>I haven&apos;t written PostScript by hand in well over a decade, and I&apos;m sorry I&apos;m &lt;i&gt;far&lt;/i&gt; too rusty (to the point of having pretty much forgotten the language) to just whip out the code, but in answer to your second question it most certainly could be done in hand-coded PostScript.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-513853</guid>
		<pubDate>Sun, 19 Feb 2006 20:02:02 -0800</pubDate>
		<dc:creator>majick</dc:creator>
	</item><item>
		<title>By: fandango_matt</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#513861</link>	
		<description>&lt;a href=&quot;http://www.fandango.net/polaroid/epicycloid-5-2.ps&quot;&gt;Here&apos;s a PostScript (.ps) file of the vector art--is this what you&apos;re looking for?&lt;/a&gt;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-513861</guid>
		<pubDate>Sun, 19 Feb 2006 20:21:41 -0800</pubDate>
		<dc:creator>fandango_matt</dc:creator>
	</item><item>
		<title>By: b1tr0t</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#513881</link>	
		<description>With postscript, you have three options:&lt;br&gt;
&lt;br&gt;
1. pure bitmap data (clearly NOT what you want)&lt;br&gt;
2. lots of lines (what you are getting now, but also not what you want)&lt;br&gt;
3. splines&lt;br&gt;
&lt;br&gt;
Splines are mathematical functions (cubics, or quadrics, I think) that graphic designers love to use for making curves.&lt;br&gt;
&lt;br&gt;
You will have to dig into the math for the splines that PostScript uses to determine whether or not they are any better than lots of lines, for your application. Depending on how well your epicycloid maps to the PostScript splines, you might end up with a handfull of splines on the page, or you might end up with far more.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-513881</guid>
		<pubDate>Sun, 19 Feb 2006 20:51:47 -0800</pubDate>
		<dc:creator>b1tr0t</dc:creator>
	</item><item>
		<title>By: virga</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#513904</link>	
		<description>I would think if you do it in MATLAB, create the figure large enough, and then export as .EPS, that should work?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-513904</guid>
		<pubDate>Sun, 19 Feb 2006 21:25:47 -0800</pubDate>
		<dc:creator>virga</dc:creator>
	</item><item>
		<title>By: grouse</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#513998</link>	
		<description>PostScript cubics are made up of a pair of cubic parametric equations. (See PDF page 579 in the &lt;a href=&quot;http://partners.adobe.com/public/developer/en/ps/PLRM.pdf&quot;&gt;red book&lt;/a&gt;.) This will not be expressive enough to produce the &quot;true vector representation&quot; in a single curve. You will have to add multiple curve segments together to make your path, being careful to make the approximation detailed enough that the difference cannot be seen at your output resolution. I would think it would be much easier to do the same thing with line segments.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-513998</guid>
		<pubDate>Mon, 20 Feb 2006 04:54:25 -0800</pubDate>
		<dc:creator>grouse</dc:creator>
	</item><item>
		<title>By: grouse</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#514012</link>	
		<description>This seemed like fun so I did it for some reason:&lt;br&gt;
&lt;br&gt;
&lt;code&gt;/pi 3.1415926535 def&lt;br&gt;
/a 5 def&lt;br&gt;
/b 2 def&lt;br&gt;
/initial 0 def&lt;br&gt;
/increment 0.1 def&lt;br&gt;
/inch {72 mul} def&lt;br&gt;
/limit 300 pi mul def&lt;br&gt;
&lt;br&gt;
/xcoord { % theta&lt;br&gt;
    dup % theta theta&lt;br&gt;
    cos a b add mul % theta (a+b)*cos(theta)&lt;br&gt;
    exch % (a+b)*cos(theta) theta&lt;br&gt;
    a b add b div mul cos b mul % (a+b)*cos(theta) b*cos(((a+b)/b)*theta)&lt;br&gt;
    sub&lt;br&gt;
} def&lt;br&gt;
&lt;br&gt;
/ycoord { % theta&lt;br&gt;
    dup&lt;br&gt;
    sin a b add mul&lt;br&gt;
    exch a b add b div mul sin b mul&lt;br&gt;
    sub&lt;br&gt;
} def&lt;br&gt;
&lt;br&gt;
/coords { % theta&lt;br&gt;
    % (theta) == dup ==&lt;br&gt;
    dup xcoord % (x) == dup ==&lt;br&gt;
    exch ycoord % (y) == dup ==&lt;br&gt;
} def&lt;br&gt;
&lt;br&gt;
3 inch 3 inch translate&lt;br&gt;
0.25 inch 0.25 inch scale&lt;br&gt;
&lt;br&gt;
newpath&lt;br&gt;
initial coords moveto&lt;br&gt;
&lt;br&gt;
initial increment limit {&lt;br&gt;
    coords lineto&lt;br&gt;
} for&lt;br&gt;
&lt;br&gt;
0.01 setlinewidth&lt;br&gt;
stroke&lt;br&gt;
 &lt;br&gt;
showpage&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
Sorry for loss of indentation. Decrease /increment to taste.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-514012</guid>
		<pubDate>Mon, 20 Feb 2006 05:54:05 -0800</pubDate>
		<dc:creator>grouse</dc:creator>
	</item><item>
		<title>By: andrew cooke</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#514040</link>	
		<description>there&apos;s svg code &lt;a href=&quot;http://www.acooke.org/andrew/writing/spirograph.html&quot;&gt;here&lt;/a&gt; (&lt;a href=&quot;http://www.acooke.org/andrew/writing/spiro.svg&quot;&gt;source&lt;/a&gt;) [self links] that you can use.  it uses bezier curves to approximate the arcs (you said you wanted &quot;true vector based&quot; - i don&apos;t know of a vector format that uses arbitrary functions directly; at some point you have to translate to line segments, either straight or curved; using curves means it looks smooth even with few segments, giving faster rendering).  the image itself will only be visible if you have svg support (recent firefox; possibly the adobe plugin for ie).</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-514040</guid>
		<pubDate>Mon, 20 Feb 2006 07:01:46 -0800</pubDate>
		<dc:creator>andrew cooke</dc:creator>
	</item><item>
		<title>By: andrew cooke</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#514043</link>	
		<description>(sorry, just realised you specifically want ps.  you might find a translator somewhere, or just lift the equations i use from the source)</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-514043</guid>
		<pubDate>Mon, 20 Feb 2006 07:03:25 -0800</pubDate>
		<dc:creator>andrew cooke</dc:creator>
	</item><item>
		<title>By: andrew cooke</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#514047</link>	
		<description>(and, i should add, it&apos;s not svg directly, but javascript that generates svg.  i&apos;ll shut up now.)</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-514047</guid>
		<pubDate>Mon, 20 Feb 2006 07:06:46 -0800</pubDate>
		<dc:creator>andrew cooke</dc:creator>
	</item><item>
		<title>By: dmd</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#514052</link>	
		<description>Grouse, that&apos;s awesome.&lt;br&gt;
&lt;br&gt;
It looks like Illustrator/Photoshop are too dumb to understand the pure mathematical beauty of such a solution, though. &lt;br&gt;
&lt;br&gt;
I do in fact need something that I&apos;ll be able to work with in Illustrator - I want to be able to work along the path defined by this curve.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-514052</guid>
		<pubDate>Mon, 20 Feb 2006 07:17:39 -0800</pubDate>
		<dc:creator>dmd</dc:creator>
	</item><item>
		<title>By: dmd</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#514055</link>	
		<description>Oh - I just noticed fandango_matt&apos;s file, which seems to work!&lt;br&gt;
&lt;br&gt;
fandango_matt, can you tell me how you created that file? &lt;br&gt;
&lt;br&gt;
Grouse&apos;s file is only 35 lines long, so I&apos;m easily able to understand what&apos;s going on in it, whereas yours is 7114 lines long. It doesn&apos;t seem to contain long lists of line segments, so I trust that somewhere in there it&apos;s either doing some math or declaring some curves, but I can&apos;t find it among all the thousands of lines of postscript errata.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-514055</guid>
		<pubDate>Mon, 20 Feb 2006 07:26:36 -0800</pubDate>
		<dc:creator>dmd</dc:creator>
	</item><item>
		<title>By: dmd</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#514061</link>	
		<description>Hmm. Now that I actually have gotten over how pretty Grouse&apos;s little file is, I realize that it&apos;s not in point of fact any different than what I had before - it&apos;s basically generating, at run time, an output containing thousands of line segments. Which, I understand, is what an &lt;b&gt;output device&lt;/b&gt; like a printer needs, but is &lt;b&gt;not&lt;/b&gt; what I need.&lt;br&gt;
&lt;br&gt;
I need a vector file that I can work with in Illustrator - something that actually defines some curve paths, so I can work with those paths.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-514061</guid>
		<pubDate>Mon, 20 Feb 2006 07:42:46 -0800</pubDate>
		<dc:creator>dmd</dc:creator>
	</item><item>
		<title>By: dmd</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#514066</link>	
		<description>fandango_matt, the ps file you created looks fine in postscript viewers, but seems to show up blank when Placed into Illustrator. Odd. How was it created?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-514066</guid>
		<pubDate>Mon, 20 Feb 2006 07:47:42 -0800</pubDate>
		<dc:creator>dmd</dc:creator>
	</item><item>
		<title>By: dmd</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#514071</link>	
		<description>Never mind, it&apos;s showing up now. My bad.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-514071</guid>
		<pubDate>Mon, 20 Feb 2006 07:49:46 -0800</pubDate>
		<dc:creator>dmd</dc:creator>
	</item><item>
		<title>By: iconjack</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#514074</link>	
		<description>dmd, I think you should take a moment to re-read b1tr0t&apos;s comment above. Your choices are lots of lines, or lots of splines.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-514074</guid>
		<pubDate>Mon, 20 Feb 2006 07:51:50 -0800</pubDate>
		<dc:creator>iconjack</dc:creator>
	</item><item>
		<title>By: dmd</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#514086</link>	
		<description>iconjack, understood.&lt;br&gt;
&lt;br&gt;
Ok, I think this is answered to my satisfaction. fandango_matt&apos;s file has solved my practical problem (even if I don&apos;t yet understand how it was created - I definitely want to know that!), and Grouse&apos;s file has reminded me how elegant Postscript can be.&lt;br&gt;
&lt;br&gt;
One other thing - to what extent can a spline actually faithfully describe the true curve of the epicycloid? I.e., fandango_matt&apos;s figure appears to be composed of 5 splines, each of which is defined by three points, each of which has an angle associated with it. To what extent has that actually captured the epicycloid? It &lt;b&gt;looks&lt;/b&gt; correct to me, but is there error involved here?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-514086</guid>
		<pubDate>Mon, 20 Feb 2006 08:07:19 -0800</pubDate>
		<dc:creator>dmd</dc:creator>
	</item><item>
		<title>By: andrew cooke</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#514095</link>	
		<description>you don&apos;t need *lots* of splines.  i found things looked ok with just two or three splines per revolution.  you can see the number &lt;a href=&quot;http://ask.metafilter.com/mefi/21366#345310&quot;&gt;here&lt;/a&gt; (previously on askme - each black dot is a new spline.).&lt;br&gt;
&lt;br&gt;
the splines are only an approximation.  they are not exact.  use a straight-line based algorithm with many small steps and compare the output - you&apos;ll see where they diverge (basically, they will agree exactly only at the points specified).</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-514095</guid>
		<pubDate>Mon, 20 Feb 2006 08:16:14 -0800</pubDate>
		<dc:creator>andrew cooke</dc:creator>
	</item><item>
		<title>By: grouse</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#514103</link>	
		<description>Have you tried Illustrator&apos;s Simplify command?&lt;br&gt;
&lt;br&gt;
&lt;em&gt;to what extent can a spline actually faithfully describe the true curve of the epicycloid?&lt;/em&gt;&lt;br&gt;
&lt;br&gt;
As faithfully as a series of line segments or points can&amp;mdash;it&apos;s still an approximation, yes? What is it that you need to do that you can&apos;t with what&apos;s been provided?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-514103</guid>
		<pubDate>Mon, 20 Feb 2006 08:20:52 -0800</pubDate>
		<dc:creator>grouse</dc:creator>
	</item><item>
		<title>By: andrew cooke</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#514107</link>	
		<description>&lt;em&gt;As faithfully as a series of line segments or points can&lt;/em&gt;&lt;br&gt;
&lt;br&gt;
for the same number of endpoints (or for the same sized file) the spline-based version is more accurate.  you need a much smaller interval if you use straight line segments.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-514107</guid>
		<pubDate>Mon, 20 Feb 2006 08:22:51 -0800</pubDate>
		<dc:creator>andrew cooke</dc:creator>
	</item><item>
		<title>By: andrew cooke</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#514108</link>	
		<description>correction - that&apos;s correct for the same number of endpoints, but for the same size file i&apos;m not sure it&apos;s more accurate (although it will certainly look better).</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-514108</guid>
		<pubDate>Mon, 20 Feb 2006 08:24:14 -0800</pubDate>
		<dc:creator>andrew cooke</dc:creator>
	</item><item>
		<title>By: Maxwell_Smart</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#514125</link>	
		<description>When working with computers in many cases, it is virtually given that nobody needs exact precision arithmetic-- all you need to do is get &quot;close enough&quot;.  For example, if you are rendering this drawing onto a screen, you can make your drawing out of many little line segments- and if you use enough of them, the result will be indistinguishable from a perfect rendering.  It may be that only 100 segments is &quot;enough&quot; for a certain physical size and resolution, but one million segments &quot;enough&quot; for a larger size.  At the end of the day though, the drawing always gets coverted to pixels of finitely large size, and any extra resolution (beyond a factor of maybe 1/5 the pixel size) is not useful. &lt;br&gt;
&lt;br&gt;
For smooth curves, your function will be fit better by splines than by an equal number of segments.  And with a function like your epicycloid, it takes remarkably few splines to fit it REALLY well.  Offhand, I imagine that only a hundred or so splines could fit it well enough for any practical purpose.&lt;br&gt;
&lt;br&gt;
Splines are just like line segments as they are drawn between two points, with the additional criteria that the first derivatives at each &quot;joining point&quot; are equal and that the second derivatives at each &quot;joining point&quot; are zero.  So instead of having sharp corners at every join, the line segments are modified to smoothly blend into one another.&lt;br&gt;
&lt;br&gt;
If you want to get a feel of how good splines are, look up on the internet a comparison of integrating under a curve with rectangles versus Simpson&apos;s approximation.  Simpson&apos;s approximation is like a crude spline interpolation.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-514125</guid>
		<pubDate>Mon, 20 Feb 2006 08:46:21 -0800</pubDate>
		<dc:creator>Maxwell_Smart</dc:creator>
	</item><item>
		<title>By: fandango_matt</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#514176</link>	
		<description>dmd: I&apos;m on a Mac/OSX. The PostScript file was made like this:&lt;br&gt;
1. I drew the vector art in Illustrator, using your .gif as a template.&lt;br&gt;
2. Print: in Illustrator, you can select Printer, PDF, or PostScript file. Select PostScript file, use PPD = Device Independent.&lt;br&gt;
3. Illustrator will prompt you to Save As and Name the file with a .ps extension.&lt;br&gt;
4. ...and Bob&apos;s your uncle!</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-514176</guid>
		<pubDate>Mon, 20 Feb 2006 09:48:32 -0800</pubDate>
		<dc:creator>fandango_matt</dc:creator>
	</item><item>
		<title>By: fandango_matt</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#514327</link>	
		<description>Here&apos;s a bit more information on how I drew it:&lt;br&gt;
&lt;br&gt;
I created it by importing the .gif into Adobe Illustrator. I then rotated the image so the joint of two lobes was directly above the intersection below them, to ensure the image was symmetrical.&lt;br&gt;
&lt;br&gt;
Next, I traced half of one of the of the arcs. I then copied and flipped it--Illustrator allows you to &quot;flip&quot; or &quot;mirror&quot; an image and specify the axis on which you flip it, so here I specified a vertical axis, and I joined the two half-lobes to create one perfectly symmetrical lobe.&lt;br&gt;
&lt;br&gt;
I copied and pasted the lobe, and placed the endpoint of the second lobe at the starting point of the first. Then I rotated the lobe--Illustrator allows you to specify the axis on which you rotate artwork, so I placed the axis of rotation at the point where the second lobe met the first. &lt;br&gt;
&lt;br&gt;
Illustrator remembers the degree of your last rotation, so once I had the copy-and-paste complete I knew to rotate the second section 144 degrees: 360 divided by five (lobes) = 72, 72 x 2 = 144.&lt;strong&gt;&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
Then I repeated this process--copy, paste, rotate 144 degrees--three more times. I then joined the five lobes together.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-514327</guid>
		<pubDate>Mon, 20 Feb 2006 12:12:30 -0800</pubDate>
		<dc:creator>fandango_matt</dc:creator>
	</item><item>
		<title>By: scruss</title>
		<link>http://ask.metafilter.com/32935/Postscript-code-for-epicycloid#514655</link>	
		<description>Even if you do get the &apos;perfect&apos; path, PostScript RIPs always convert paths to line segments on output. So no matter what you do, there will be straight line segments. PostScript&apos;s floating point mathematics are also not tremendously accurate.&lt;br&gt;
&lt;br&gt;
It would be kind of fun to draw this figure with a bunch of signal generators and an analogue pen plotter ...</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.32935-514655</guid>
		<pubDate>Mon, 20 Feb 2006 17:05:14 -0800</pubDate>
		<dc:creator>scruss</dc:creator>
	</item>
	</channel>
</rss>
