<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Graph builder element loop function in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Graph-builder-element-loop-function/m-p/848939#M102463</link>
    <description>&lt;P&gt;It works, and I try like this.&lt;/P&gt;
&lt;P&gt;Thanks a lot&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Eval(
			Substitute(
			Expr(
				gb = cdt &amp;lt;&amp;lt; Graph Builder(
					Size( 600, 800 ),
					Show Control Panel( 0 ),
					vvv,
					Elements(Position( 1, 1 ),
						Points( X, Y( 1 ), Y( 2 ), Y( 3 ), Legend( 3 ) ),
						Smoother( X, Y( 1 ), Y( 2 ), Y( 3 ), Legend( 4 ) )
					),
					);
				For( i = 1 , i &amp;lt;= n_mymetric , i++, 
					gb &amp;lt;&amp;lt; Add Element(2, i, {Type("Bar"), X, Y, Bar Style("Float"), Label("Label by Value")});
				),
			),
			Expr( vvv ),
			Name Expr( var expr )
		)
	);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 21 Mar 2025 08:25:27 GMT</pubDate>
    <dc:creator>SING</dc:creator>
    <dc:date>2025-03-21T08:25:27Z</dc:date>
    <item>
      <title>Graph builder element loop function</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-element-loop-function/m-p/848462#M102384</link>
      <description>&lt;P&gt;How can i use loop function for multiple position definition?&lt;/P&gt;&lt;P&gt;If separate like below it work:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Eval(
			Substitute(
			Expr(
				gb = cdt &amp;lt;&amp;lt; Graph Builder(
					Size( 600, 800 ),
					Show Control Panel( 0 ),
					vvv,
					Elements(Position( 1, 1 ),
						Points( X, Y( 1 ), Y( 2 ), Y( 3 ), Legend( 3 ) ),
						Smoother( X, Y( 1 ), Y( 2 ), Y( 3 ), Legend( 4 ) )
					),
					Elements(
                    Position( 2, 1 ),
                    Box Plot( X, Y, Outliers( 0 ) ),
                    Points( X, Y ),
                    Bar( X, Y, Bar Style( "Float" ), Label( "Label by Value" ) ),
                    Legend( 6 )
                ),
                Elements(
                    Position( 2, 2 ),
                    Box Plot( X, Y, Outliers( 0 ) ),
                    Points( X, Y ),
                    Bar( X, Y, Bar Style( "Float" ), Label( "Label by Value" ) ),
                    Legend( 7 )
                ),
                Elements(
                    Position( 2, 3 ),
                    Box Plot( X, Y, Outliers( 0 ) ),
                    Points( X, Y ),
                    Bar( X, Y, Bar Style( "Float" ), Label( "Label by Value" ) ),
                    Legend( 8 )
                )
            )
        ),
        Expr( vvv ),
        Name Expr( var expr )
    )
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;But if using loop like this it's only have bar, what's missing in this code?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Eval(
			Substitute(
			Expr(
				gb = cdt &amp;lt;&amp;lt; Graph Builder(
					Size( 600, 800 ),
					Show Control Panel( 0 ),
					vvv,
					Elements(Position( 1, 1 ),
						Points( X, Y( 1 ), Y( 2 ), Y( 3 ), Legend( 3 ) ),
						Smoother( X, Y( 1 ), Y( 2 ), Y( 3 ), Legend( 4 ) )
					),
					For( j = 1, j &amp;lt;= n_mydatecol, j++,
						Elements(
							Position( 2, j ),
							Box Plot( X, Y, Outliers( 0 ) ),
							Points( X, Y ),
							Bar( X, Y, Bar Style( "Float" ), Label( "Label by Value" ) ),
							Legend(eval( 5 + j ))
						),
					),
				)
			),
			Expr( vvv ),
			Name Expr( var expr )
		)
	);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 19 Mar 2025 06:08:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-element-loop-function/m-p/848462#M102384</guid>
      <dc:creator>SING</dc:creator>
      <dc:date>2025-03-19T06:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder element loop function</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-element-loop-function/m-p/848472#M102385</link>
      <description>&lt;P&gt;You could build the elements expressions separately and then evaluate it inside graph builder expression. Or in some cases it might be easier if you use &amp;lt;&amp;lt; Add Element&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
gb = Graph Builder(Variables(X(:height), Y(:weight)), Elements(Points(X, Y), Smoother(X, Y)));
Wait(0.5);
gb &amp;lt;&amp;lt; Add Element(1, 1, {Type("Line Of Fit"), X, Y, Degree("Quadratic")});&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 19 Mar 2025 06:27:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-element-loop-function/m-p/848472#M102385</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-03-19T06:27:41Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder element loop function</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-element-loop-function/m-p/848474#M102386</link>
      <description>&lt;P&gt;my chart want to be like this, do I need to define the position?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SING_0-1742456555126.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/74032i6F96023D51211307/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SING_0-1742456555126.png" alt="SING_0-1742456555126.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 07:42:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-element-loop-function/m-p/848474#M102386</guid>
      <dc:creator>SING</dc:creator>
      <dc:date>2025-03-20T07:42:48Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder element loop function</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-element-loop-function/m-p/848479#M102389</link>
      <description>&lt;P&gt;Add element does allow you setting X and Y position. Did you try if it would work for your use case?&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 08:57:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-element-loop-function/m-p/848479#M102389</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-03-19T08:57:33Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder element loop function</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-element-loop-function/m-p/848678#M102412</link>
      <description>&lt;P&gt;Hello Jarmo,&lt;/P&gt;&lt;P&gt;Try to use the code below, but still only show box plot, how can i show the bar and label.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SING_1-1742456919072.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/74033iB49F93C575E9DD8F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SING_1-1742456919072.png" alt="SING_1-1742456919072.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Eval(&lt;BR /&gt;Substitute(&lt;BR /&gt;Expr(&lt;BR /&gt;gb = cdt &amp;lt;&amp;lt; Graph Builder(&lt;BR /&gt;Size( 1200, 800 ),&lt;BR /&gt;Show Control Panel( 0 ),&lt;BR /&gt;vvv,&lt;BR /&gt;Elements(&lt;BR /&gt;Position( 1, 1 ),&lt;BR /&gt;Points( X, Y( 1 ), Y( 2 ), Y( 3 ), Legend( 3 ) ),&lt;BR /&gt;Smoother( X, Y( 1 ), Y( 2 ), Y( 3 ), Legend( 4 ) )&lt;BR /&gt;)&lt;BR /&gt;);&lt;BR /&gt;&lt;BR /&gt;// Loop to add repetitive elements&lt;BR /&gt;For( i = 2, i &amp;lt;= 10, i++,&lt;BR /&gt;gb &amp;lt;&amp;lt; Add Elements(&lt;BR /&gt;Position( 2, i ),&lt;BR /&gt;Box Plot( X, Y( 1 ), Y( 2 ), Y( 3 ), Legend( 2 * i + 1 ) ),&lt;BR /&gt;Bar( X, Y, Legend( 2 * i + 2 ), Bar Style( "Float" ), Label( "Label by Value" ), Label Format( "Fixed Dec", 5, 2 ) )&lt;BR /&gt;);&lt;BR /&gt;);&lt;BR /&gt;),&lt;BR /&gt;Expr( vvv ),&lt;BR /&gt;Name Expr( var expr )&lt;BR /&gt;)&lt;BR /&gt;);&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 07:48:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-element-loop-function/m-p/848678#M102412</guid>
      <dc:creator>SING</dc:creator>
      <dc:date>2025-03-20T07:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder element loop function</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-element-loop-function/m-p/848680#M102413</link>
      <description>&lt;P&gt;I will have to create example data (or find appropriate one) and re-create the graph so it will take some time&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 07:45:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-element-loop-function/m-p/848680#M102413</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-03-20T07:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder element loop function</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-element-loop-function/m-p/848843#M102437</link>
      <description>&lt;P&gt;I can see all the images have changed to something totally different they were earlier... I'm not sure how well the scripts provided to correspond to those new images. Which columns would have to be added dynamically and where?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Graph builder script for this&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1742487233052.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/74048iA404F3E2910E2295/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1742487233052.png" alt="jthi_0-1742487233052.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;looks something like this&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1); 

dt = Open("$SAMPLE_DATA/Big Class.jmp");

gb = dt &amp;lt;&amp;lt; Graph Builder(
	Size(528, 454),
	Show Control Panel(0),
	Variables(X(:height), X(:sex), Y(:weight)),
	Elements(
		Position(1, 1),
		Points(X, Y, Legend(5)),
		Smoother(X, Y, Legend(6)),
		Line Of Fit(X, Y, Legend(8))
	),
	Elements(
		Position(2, 1),
		Points(X, Y, Legend(18)),
		Bar(X, Y, Legend(19), Bar Style("Float"), Label("Label by Value"))
	)
);

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you have a plot like this and you wish to add float bar chart to it to the right side with points&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1742487267356.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/74049i33354F0C3624680E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1742487267356.png" alt="jthi_1-1742487267356.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;You can use add element&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;gb &amp;lt;&amp;lt; Add Element(2, 1, {Type("Bar"), X, Y, Bar Style("Float"), Label("Label by Value")});&lt;/CODE&gt;&lt;/PRE&gt;
&lt;LI-SPOILER&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1); 

dt = Open("$SAMPLE_DATA/Big Class.jmp");

gb = dt &amp;lt;&amp;lt; Graph Builder(
	Size(528, 454),
	Show Control Panel(0),
	Variables(X(:height), X(:sex), Y(:weight)),
	Elements(
		Position(1, 1),
		Points(X, Y, Legend(5)),
		Smoother(X, Y, Legend(6)),
		Line Of Fit(X, Y, Legend(8))
	),
	Elements(
		Position(2, 1),
		Points(X, Y, Legend(18))
	)
);

gb &amp;lt;&amp;lt; Add Element(2, 1, {Type("Bar"), X, Y, Bar Style("Float"), Label("Label by Value")});&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI-SPOILER&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 16:15:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-element-loop-function/m-p/848843#M102437</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-03-20T16:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder element loop function</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-element-loop-function/m-p/848923#M102459</link>
      <description>&lt;P&gt;Hi Jarmo,&lt;BR /&gt;Thanks for the helping, it can work went the y axis only have one, but what I want is if their have multiple y axis, can i still using loop function to have the element with box plot and bar? I had tried like the first one, but it only showed box plot without bars.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Mar 2025 05:20:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-element-loop-function/m-p/848923#M102459</guid>
      <dc:creator>SING</dc:creator>
      <dc:date>2025-03-21T05:20:42Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder element loop function</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-element-loop-function/m-p/848925#M102460</link>
      <description>&lt;P&gt;I'm not sure what you are plotting, but it might (or might not) work. Here I'm using Add Element to add bar chart to X axis 2 and Y axis 1 and 2&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1); 

dt = Open("$SAMPLE_DATA/Big Class.jmp");

gb = dt &amp;lt;&amp;lt; Graph Builder(
	Size(528, 454),
	Show Control Panel(0),
	Variables(X(:height), X(:sex), Y(:name), Y(:weight)),
	Elements(Position(1, 1), Points(X, Y, Legend(20))),
	Elements(
		Position(1, 2),
		Points(X, Y, Legend(5)),
		Smoother(X, Y, Legend(6)),
		Line Of Fit(X, Y, Legend(8))
	),
	Elements(Position(2, 1), Points(X, Y, Legend(19))),
	Elements(Position(2, 2), Points(X, Y, Legend(18)))
);

gb &amp;lt;&amp;lt; Add Element(2, 1, {Type("Bar"), X, Y, Bar Style("Float"), Label("Label by Value")});
gb &amp;lt;&amp;lt; Add Element(2, 2, {Type("Bar"), X, Y, Bar Style("Float"), Label("Label by Value")});
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1742535061828.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/74058iC9FA20485BB713E0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1742535061828.png" alt="jthi_0-1742535061828.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Mar 2025 05:31:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-element-loop-function/m-p/848925#M102460</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-03-21T05:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder element loop function</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-element-loop-function/m-p/848939#M102463</link>
      <description>&lt;P&gt;It works, and I try like this.&lt;/P&gt;
&lt;P&gt;Thanks a lot&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Eval(
			Substitute(
			Expr(
				gb = cdt &amp;lt;&amp;lt; Graph Builder(
					Size( 600, 800 ),
					Show Control Panel( 0 ),
					vvv,
					Elements(Position( 1, 1 ),
						Points( X, Y( 1 ), Y( 2 ), Y( 3 ), Legend( 3 ) ),
						Smoother( X, Y( 1 ), Y( 2 ), Y( 3 ), Legend( 4 ) )
					),
					);
				For( i = 1 , i &amp;lt;= n_mymetric , i++, 
					gb &amp;lt;&amp;lt; Add Element(2, i, {Type("Bar"), X, Y, Bar Style("Float"), Label("Label by Value")});
				),
			),
			Expr( vvv ),
			Name Expr( var expr )
		)
	);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 21 Mar 2025 08:25:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-element-loop-function/m-p/848939#M102463</guid>
      <dc:creator>SING</dc:creator>
      <dc:date>2025-03-21T08:25:27Z</dc:date>
    </item>
  </channel>
</rss>

