<?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: How to ID min max in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244316#M56055</link>
    <description>Here is my code &lt;BR /&gt;Proc sql ;&lt;BR /&gt;Create table  report as&lt;BR /&gt;(Select &lt;BR /&gt;ID,&lt;BR /&gt;NUMBER,&lt;BR /&gt;START_TIME,&lt;BR /&gt;END_TIME,&lt;BR /&gt;MIN (START_TIME) FORMAT=DATE9.,&lt;BR /&gt;MAX (END_TIME)FORMAT=DATE9.&lt;BR /&gt;FROM REPORT&lt;BR /&gt;GROUP by Id, numbe&lt;BR /&gt;); run;&lt;BR /&gt;&lt;BR /&gt;The date9. Is coming up 1.76501E9&lt;BR /&gt;&lt;BR /&gt;Yes it's number 23&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 18 Jan 2016 23:21:39 GMT</pubDate>
    <dc:creator>BETO</dc:creator>
    <dc:date>2016-01-18T23:21:39Z</dc:date>
    <item>
      <title>How to ID min max</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244268#M56043</link>
      <description>&lt;P&gt;How do I get the min time an max time by number? Data looks like this&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;id. Number. Start time. End time&lt;BR /&gt;1a. 23. 01/01/16. 11:01:00. 01/01/16 11:05:11&lt;BR /&gt;1a. 24. 01/01/16 11:02:00. 01/01/16 11:06:16&lt;BR /&gt;1a. 25. 01/01/16. 12:00:00. 01/0116 12:07:00&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would want want it to look like this outpout&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;id. Number. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Min Start time. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Max End time&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;1a. 23. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/01/16. 11:01:00. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/01/16 11:06:11&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jan 2016 18:46:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244268#M56043</guid>
      <dc:creator>BETO</dc:creator>
      <dc:date>2016-01-18T18:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to ID min max</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244272#M56044</link>
      <description>&lt;P&gt;Proc Means, Summary, Univariate, SQL, a Data Step&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are a lot of ways to generate descriptive statistics.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/proc/68954/HTML/default/viewer.htm#p070bkysj4lkyun0zxj45n643q1i.htm" target="_blank"&gt;https://support.sas.com/documentation/cdl/en/proc/68954/HTML/default/viewer.htm#p070bkysj4lkyun0zxj45n643q1i.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jan 2016 19:13:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244272#M56044</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-01-18T19:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to ID min max</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244304#M56046</link>
      <description>Hi reeza,&lt;BR /&gt;Is there a way using proc sql or a data step ? &lt;BR /&gt;</description>
      <pubDate>Mon, 18 Jan 2016 22:05:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244304#M56046</guid>
      <dc:creator>BETO</dc:creator>
      <dc:date>2016-01-18T22:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to ID min max</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244305#M56047</link>
      <description>&lt;P&gt;What do you want to do here?&amp;nbsp;&lt;SPAN&gt;1a. 23. seems to be a unique combination, so why assign&amp;nbsp;01/01/16 11:06:11 to this key as the End time?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;what would be your decision rule here?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jan 2016 22:10:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244305#M56047</guid>
      <dc:creator>JohndeKroon</dc:creator>
      <dc:date>2016-01-18T22:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to ID min max</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244308#M56048</link>
      <description>I have a ID  of 1 with a number of 23 ....sorry I just notice the 24 should be a 23 number so since I have 2 entries on same date same id and same number I want to determine the min between those 2 and the max between this 2</description>
      <pubDate>Mon, 18 Jan 2016 22:20:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244308#M56048</guid>
      <dc:creator>BETO</dc:creator>
      <dc:date>2016-01-18T22:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to ID min max</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244310#M56049</link>
      <description>&lt;P&gt;Ah! That makes sense &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try the following:&lt;/P&gt;&lt;PRE&gt;proc sql;
	create table work.test as select
		id,
		number,
		min(start_time) format=date9. (or whatever format you like),
		max(end_time) format=date9.(or whatever format you like)
	from &amp;lt;yrtablename&amp;gt;
		group by id, number;
quit;&lt;/PRE&gt;&lt;P&gt;Hope this helps&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jan 2016 22:27:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244310#M56049</guid>
      <dc:creator>JohndeKroon</dc:creator>
      <dc:date>2016-01-18T22:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to ID min max</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244311#M56050</link>
      <description>I am getting these results&lt;BR /&gt;Here is data&lt;BR /&gt;&lt;BR /&gt;id. Number. Start time. End time&lt;BR /&gt;1a. 23. 01/01/16. 11:01:00. 01/01/16 11:05:11&lt;BR /&gt;1a. 24. 01/01/16 11:02:00. 01/01/16 11:06:16&lt;BR /&gt;1a. 25. 01/01/16. 12:00:00. 01/0116 12:07:00&lt;BR /&gt;&lt;BR /&gt;I'm getting &lt;BR /&gt;id. Number. Start time. End time&lt;BR /&gt;1a. 23. 01/01/16. 11:01:00. 01/01/16 11:05:11&lt;BR /&gt;&lt;BR /&gt;when it should be this &lt;BR /&gt;&lt;BR /&gt;id. Number. Start time. End time&lt;BR /&gt;1a. 23. 01/01/16. 11:01:00. 01/01/16 11:06:00&lt;BR /&gt;the min part works but max it give me the end time to the min what I'm looking for the max time to the end time almost there thanks &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Jan 2016 22:58:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244311#M56050</guid>
      <dc:creator>BETO</dc:creator>
      <dc:date>2016-01-18T22:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to ID min max</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244312#M56051</link>
      <description>&lt;P&gt;Shouldn't you change the 24 into 23? That's what I understood from your previous reaction...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You suggested that your data should look like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;id. Number. Start time. End time&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1a. 23. 01/01/16. 11:01:00. 01/01/16 11:05:11&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1a. &lt;U&gt;&lt;STRONG&gt;23&lt;/STRONG&gt;&lt;/U&gt;. 01/01/16 11:02:00. 01/01/16 11:06:16&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1a. 25. 01/01/16. 12:00:00. 01/0116 12:07:00&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Or did I get you wrong here?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jan 2016 23:01:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244312#M56051</guid>
      <dc:creator>JohndeKroon</dc:creator>
      <dc:date>2016-01-18T23:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to ID min max</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244313#M56052</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19504"&gt;@BETO﻿&lt;/a&gt;&amp;nbsp;Post your code, the code posted references end_time in the max function.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jan 2016 23:02:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244313#M56052</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-01-18T23:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to ID min max</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244314#M56053</link>
      <description>Yes sorry didn't change it should be 23</description>
      <pubDate>Mon, 18 Jan 2016 23:13:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244314#M56053</guid>
      <dc:creator>BETO</dc:creator>
      <dc:date>2016-01-18T23:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to ID min max</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244315#M56054</link>
      <description>&lt;P&gt;Hopefully the code now works for you!?&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jan 2016 23:14:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244315#M56054</guid>
      <dc:creator>JohndeKroon</dc:creator>
      <dc:date>2016-01-18T23:14:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to ID min max</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244316#M56055</link>
      <description>Here is my code &lt;BR /&gt;Proc sql ;&lt;BR /&gt;Create table  report as&lt;BR /&gt;(Select &lt;BR /&gt;ID,&lt;BR /&gt;NUMBER,&lt;BR /&gt;START_TIME,&lt;BR /&gt;END_TIME,&lt;BR /&gt;MIN (START_TIME) FORMAT=DATE9.,&lt;BR /&gt;MAX (END_TIME)FORMAT=DATE9.&lt;BR /&gt;FROM REPORT&lt;BR /&gt;GROUP by Id, numbe&lt;BR /&gt;); run;&lt;BR /&gt;&lt;BR /&gt;The date9. Is coming up 1.76501E9&lt;BR /&gt;&lt;BR /&gt;Yes it's number 23&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Jan 2016 23:21:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244316#M56055</guid>
      <dc:creator>BETO</dc:creator>
      <dc:date>2016-01-18T23:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to ID min max</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244319#M56056</link>
      <description>&lt;P&gt;You have a datetime variable, not date, so try datetime21. or dtdate9. formats.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jan 2016 23:40:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244319#M56056</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-01-18T23:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to ID min max</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244323#M56057</link>
      <description>Thanks reeza.  I'm still getting  the min and max from  same entries it doesn't look at both entries any suggestions?</description>
      <pubDate>Tue, 19 Jan 2016 00:04:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244323#M56057</guid>
      <dc:creator>BETO</dc:creator>
      <dc:date>2016-01-19T00:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to ID min max</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244329#M56058</link>
      <description>&lt;P&gt;Your GROUP BY tells SAS at what levels to calculate. From your code snippet it looks like you've included Number in your GROUP BY when the numbers are different across the observations. SAS is correctly calculating what you've requested. Remove Numbers from the GROUP BY and Select statement. If you want to include it in the SELECT you'll need some sort of rule, ie max/min of which one to take. If it's first or last then then you'll need to go back to data step logic.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2016 01:11:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244329#M56058</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-01-19T01:11:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to ID min max</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244332#M56059</link>
      <description>&lt;P&gt;Here could give you a start :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;option datestyle=mdy;
data have;
input id $ Number  (Starttime Endtime) (: anydtdtm.);
format Starttime Endtime datetime.;
cards;
1a. 23 01/01/16:11:01:00  01/01/16:11:05:11
1a. 24 01/01/16:11:02:00  01/01/16:11:06:16
1a. 25 01/01/16:12:00:00  01/01/16:12:07:00
;
run;
data temp;
 set have;
 if lag(Endtime) lt Starttime or id ne lag(id) then g+1;
run;
data want;
 set temp;
 by g;
 retain start num;
 if first.g then do;start=Starttime;num=number;end;
 if last.g then do;end=Endtime;output;end;
 format start end datetime.;
 drop Starttime Endtime number;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 19 Jan 2016 01:40:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244332#M56059</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-01-19T01:40:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to ID min max</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244362#M56060</link>
      <description>&lt;P&gt;I guess that in total this should do your trick:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;option datestyle=mdy;
data have;
input id $ Number  (Starttime Endtime) (: anydtdtm.);
format Starttime Endtime datetime.;
cards;
1a. 23 01/01/16:11:01:00  01/01/16:11:05:11
1a. 23 01/01/16:11:02:00  01/01/16:11:06:16
1a. 25 01/01/16:12:00:00  01/01/16:12:07:00
;
run;

proc sql;
	create table want as select
		id,
		number,
		/*starttime,
		endtime,*/
		min(starttime)  format=datetime.,
		max(endtime) format=datetime.
	from have
		group by id, number;
quit;&lt;/PRE&gt;&lt;P&gt;Note that you should omit starttime and endtime as direct outputs of your sql-statement. The group by won't work if you do, because your rows are not uniquely identified by only id and number.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hopefully this is what you want.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2016 06:58:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244362#M56060</guid>
      <dc:creator>JohndeKroon</dc:creator>
      <dc:date>2016-01-19T06:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to ID min max</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244597#M56091</link>
      <description>Hi thank you everyone e that is assisting me ...whst I have is a data set that looks like this&lt;BR /&gt;SITE.     NUMBER.  START TIME.           END TIME&lt;BR /&gt;123.         A3   06dec2015:8:24:00 .06dec2015:08:26;00&lt;BR /&gt;&lt;BR /&gt;123.         A3   06dec2015:8:26:00 .06dec2015:08:40:00&lt;BR /&gt;&lt;BR /&gt;What I want is the min an max of those 2 entries nothing else something like this&lt;BR /&gt;&lt;BR /&gt;123.         A3   06dec2015:8:24:00 .06dec2015:08:40:00&lt;BR /&gt;The other 2 can be removed&lt;BR /&gt;What I'm getting is all 4 entries or just the min&lt;BR /&gt;123.         A3   06dec2015:8:24:00 .06dec2015:08:26;00&lt;BR /&gt;Thank you again&lt;BR /&gt;&lt;BR /&gt;BTW there are other dates in my data sometimes it brings those dates as my min an max for example&lt;BR /&gt;123.         A3   03dec2015:8:25500 .06dec2015:08:26;00. Which means it's looking st who data I need it to look at each day spefic&lt;BR /&gt;</description>
      <pubDate>Wed, 20 Jan 2016 06:16:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244597#M56091</guid>
      <dc:creator>BETO</dc:creator>
      <dc:date>2016-01-20T06:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to ID min max</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244624#M56092</link>
      <description>&lt;P&gt;You get what you want based this dataset .&lt;/P&gt;
&lt;P&gt;CODE NOT TESTED&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=have ; by SITE  END_TIME ;run;
data want;
 set have;
 by SITE  ;
 if first.SITE  ;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 20 Jan 2016 08:53:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244624#M56092</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-01-20T08:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to ID min max</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244747#M56100</link>
      <description>Hi ksharp I added the data step ...where you state data want is it a table your refer or column? I refer to table it failed ? The set an if are highlighted in red log states.  180-322 statement is not valid or it used out of proper order</description>
      <pubDate>Wed, 20 Jan 2016 16:32:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-ID-min-max/m-p/244747#M56100</guid>
      <dc:creator>BETO</dc:creator>
      <dc:date>2016-01-20T16:32:13Z</dc:date>
    </item>
  </channel>
</rss>

