<?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 Last observation carried to previous missing and the missing after in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501891#M133883</link>
    <description>&lt;P&gt;I have a repeated measurement with missing data and trying to use the&amp;nbsp;observation available carried backward ad forward to substitute the missing before and after the observation.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What would the solution here?&lt;/P&gt;
&lt;P&gt;Thanks in advance!&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input pat_id	hemoglobin;
cards;
1	.
1	123
1	.
1	124
1	125
1	121
1	.
1	126
2	120
2	220
2	.
2	.
2	.
2	201
2	.
2	.
3   .
3   .
3   .
3   .
3   150
; 

data want;
input pat_id hemoglobin;
cards;
1	123
1	123
1	123
1	124
1	125
1	121
1	121
1	126
2	120
2	220
2	220
2	220
2	220
2	201
2	201
2	201
3   150
3   150
3   150
3   150
3   150
run; 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 05 Oct 2018 13:28:05 GMT</pubDate>
    <dc:creator>Cruise</dc:creator>
    <dc:date>2018-10-05T13:28:05Z</dc:date>
    <item>
      <title>Last observation carried to previous missing and the missing after</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501891#M133883</link>
      <description>&lt;P&gt;I have a repeated measurement with missing data and trying to use the&amp;nbsp;observation available carried backward ad forward to substitute the missing before and after the observation.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What would the solution here?&lt;/P&gt;
&lt;P&gt;Thanks in advance!&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input pat_id	hemoglobin;
cards;
1	.
1	123
1	.
1	124
1	125
1	121
1	.
1	126
2	120
2	220
2	.
2	.
2	.
2	201
2	.
2	.
3   .
3   .
3   .
3   .
3   150
; 

data want;
input pat_id hemoglobin;
cards;
1	123
1	123
1	123
1	124
1	125
1	121
1	121
1	126
2	120
2	220
2	220
2	220
2	220
2	201
2	201
2	201
3   150
3   150
3   150
3   150
3   150
run; 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 05 Oct 2018 13:28:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501891#M133883</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2018-10-05T13:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: Last observation carried to previous missing and the missing after</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501896#M133888</link>
      <description>&lt;P&gt;Carry over once, sort in reverse order, carry over a second time, re-sort to original order:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input pat_id hemoglobin;
cards;
1 .
1 123
1 .
1 124
1 125
1 121
1 .
1 126
2 120
2 220
2 .
2 .
2 .
2 201
2 .
2 .
3 .
3 .
3 .
3 .
3 150
;
run;

data int1;
set have;
by pat_id;
retain _hem;
if first.pat_id then _hem = hemoglobin;
if hemoglobin = .
then hemoglobin = _hem;
else _hem = hemoglobin;
order = _n_;
drop _hem;
run;

proc sort data=int1;
by pat_id descending order;
run;

data int2;
set int1;
by pat_id;
retain _hem;
if first.pat_id then _hem = hemoglobin;
if hemoglobin = .
then hemoglobin = _hem;
else _hem = hemoglobin;
drop _hem;
run;

proc sort
  data=int2
  out=want (drop=order)
;
by order;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 05 Oct 2018 13:34:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501896#M133888</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-10-05T13:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: Last observation carried to previous missing and the missing after</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501899#M133891</link>
      <description>&lt;P&gt;What does this data represent?&amp;nbsp; If just shows some value and an id.&amp;nbsp; Its highly likely that you real data has more information than this, such as timepoints/datetimes or visits etc. which would make identifying where values should be imputed a lot more robust and simpler.&amp;nbsp; From what you post here, just moving the value before and after doesn't really seem the ideal method, I mean:&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token datalines"&gt;&lt;SPAN class="token data string"&gt;1	121
1	.
1	126&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Should 121 be carried forward, or 126 be imputed backwards?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Oct 2018 13:40:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501899#M133891</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-10-05T13:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: Last observation carried to previous missing and the missing after</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501901#M133892</link>
      <description>Yeah, that's such a conceptual argument. I have to think of the underlying biological plausibility. But the extent of analysis I'm doing right now is not taking full advantage of the data yet. But definitely an important aspect to think about when I actually start looking at it for modelling purposes.</description>
      <pubDate>Fri, 05 Oct 2018 13:43:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501901#M133892</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2018-10-05T13:43:36Z</dc:date>
    </item>
    <item>
      <title>Re: Last observation carried to previous missing and the missing after</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501904#M133893</link>
      <description>I appreciate it</description>
      <pubDate>Fri, 05 Oct 2018 13:51:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501904#M133893</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2018-10-05T13:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: Last observation carried to previous missing and the missing after</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501905#M133894</link>
      <description>I appreciate it!</description>
      <pubDate>Fri, 05 Oct 2018 13:51:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501905#M133894</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2018-10-05T13:51:18Z</dc:date>
    </item>
    <item>
      <title>Re: Last observation carried to previous missing and the missing after</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501929#M133906</link>
      <description>&lt;P&gt;EDIT:&lt;/P&gt;
&lt;P&gt;The method below will not work correctly if ID has all missing LOCF variables.&amp;nbsp; This will work.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
   input pat_id hem @@;
   ohem = hem; *for check;
   cards;
1	.   1	123 1	. 1	124 1	125 1	121 1	. 1	126 
2	120 2	220 2	. 2	. 2	. 2	201 2	. 2	. 
3   . 3   . 3   . 3   . 3   150 
4 . 4 .
;;;;
   run; 
proc print;
   run;

data want;
   flag = 0;
   do until(last.pat_id); 
      set have(in=in1);
      by pat_id;
      if flag then continue;
      if not missing(hem) then do; flag=1; back=hem; end;
      end;
   do until(last.pat_id);
      update have(obs=0 drop=ohem) have(drop=ohem);
      by pat_id;
      hem = coalesce(hem,back);
      set have(keep=ohem);
      output;
      end;
   run;
proc print;
   run;&lt;/CODE&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;The uses the update trick for the LOCF and accommodates the "look back".&amp;nbsp; Ideally you would like a method that works&amp;nbsp;to LOCF/BACK many variables with having to reference them in the code too often.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
   input pat_id hem @@;
   ohem = hem; *for check;
   cards;
1	.   1	123 1	. 1	124 1	125 1	121 1	. 1	126 
2	120 2	220 2	. 2	. 2	. 2	201 2	. 2	. 
3   . 3   . 3   . 3   . 3   150 
;;;;
   run; 
proc print;
   run;
data backv / view=backv;
   set have(where=(not missing(hem)));
   by pat_id;
   if first.pat_id;
   rename hem=back;
   keep pat_id hem;
   run;
data want;
   if 0 then set have;
   do until(last.pat_id); 
      set backv;
      by pat_id;
      end;
   do until(last.pat_id);
      update have(obs=0 drop=ohem) have(drop=ohem);
      by pat_id;
      hem = coalesce(hem,back);
      set have(keep=ohem);
      output;
      end;
   drop back;
   run;
proc print;
   run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 181px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/23810i765F5FA10377F518/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Oct 2018 16:41:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501929#M133906</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2018-10-05T16:41:52Z</dc:date>
    </item>
    <item>
      <title>Re: Last observation carried to previous missing and the missing after</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501947#M133916</link>
      <description>Excellent. Was it more time efficient that forward-then-reverse order approach than Bremser's? Just curious to understand the cons-pros.</description>
      <pubDate>Fri, 05 Oct 2018 15:30:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501947#M133916</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2018-10-05T15:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: Last observation carried to previous missing and the missing after</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501974#M133930</link>
      <description>&lt;P&gt;When Guru JKing has participated, mine is unimportant but allow me to have fun&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input pat_id	hemoglobin;
cards;
1	.
1	123
1	.
1	124
1	125
1	121
1	.
1	126
2	120
2	220
2	.
2	.
2	.
2	201
2	.
2	.
3   .
3   .
3   .
3   .
3   150
; 

data want;
if _n_=1 then do;
dcl hash h(multidata:'y');
h.definekey('pat_id');
h.definedata('hemoglobin');
h.definedone();
end;
do  until(last.pat_id);
set have;
by pat_id;
if hemoglobin ne . then if h.check() ne 0 then rc=h.add();
end;
call missing(_h);
do until(last.pat_id);
set have;
by pat_id;
if not missing(hemoglobin) then _h=hemoglobin;
else if missing(hemoglobin) and _h then hemoglobin=_h;
else if missing(hemoglobin) then rc=h.find();
output;
end;
drop rc _h;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Oct 2018 16:15:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501974#M133930</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-10-05T16:15:11Z</dc:date>
    </item>
    <item>
      <title>Re: Last observation carried to previous missing and the missing after</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501985#M133935</link>
      <description>&lt;P&gt;Or a direct dump into hash, however i was bit concerned about the insertion order earlier and played safe with Double DOW 1. to insert 2. look up&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input pat_id	hemoglobin;
cards;
1	.
1	123
1	.
1	124
1	125
1	121
1	.
1	126
2	120
2	220
2	.
2	.
2	.
2	201
2	.
2	.
3   .
3   .
3   .
3   .
3   150
; 
data want;
if _n_=1 then do;
if 0 then set have;
dcl hash h(dataset:'have(where=(hemoglobin ne .))');
h.definekey('pat_id');
h.definedata('hemoglobin');
h.definedone();
end;
call missing(_h);
do until(last.pat_id);
set have;
by pat_id;
if not missing(hemoglobin) then _h=hemoglobin;
else if missing(hemoglobin) and _h then hemoglobin=_h;
else if missing(hemoglobin) then rc=h.find();
output;
end;
drop rc _h;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Oct 2018 16:31:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501985#M133935</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-10-05T16:31:49Z</dc:date>
    </item>
    <item>
      <title>Re: Last observation carried to previous missing and the missing after</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501988#M133937</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/132289"&gt;@Cruise&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Excellent. Was it more time efficient that forward-then-reverse order approach than Bremser's? Just curious to understand the cons-pros.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If your data are sorted BY&amp;nbsp;id as in your sample data&amp;nbsp;then no sorting is needed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One advantage of the update trick is you can LOCF many variables.&amp;nbsp; In fact the default would be to LOCF all variables other than ID.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm trying to figure a easy way to create a single observation of the FIRST non-missing values for each ID that is simple. Then the look back part could be easily extended to all non-id variables.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Oct 2018 16:32:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501988#M133937</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2018-10-05T16:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: Last observation carried to previous missing and the missing after</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501995#M133942</link>
      <description>&lt;P&gt;Or with update and hash&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data have;
input pat_id	hemoglobin;
cards;
1	.
1	123
1	.
1	124
1	125
1	121
1	.
1	126
2	120
2	220
2	.
2	.
2	.
2	201
2	.
2	.
3   .
3   .
3   .
3   .
3   150
; 

data want;
if _n_=1 then do;
if 0 then set have;
dcl hash h(dataset:'have(where=(hemoglobin ne .))');
h.definekey('pat_id');
h.definedata('hemoglobin');
h.definedone();
end;
do until(last.pat_id);
update have(obs=0) have;
by pat_id;
if missing(hemoglobin) then rc=h.find();
output;
end;
drop rc ;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 05 Oct 2018 17:03:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/501995#M133942</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-10-05T17:03:01Z</dc:date>
    </item>
    <item>
      <title>Re: Last observation carried to previous missing and the missing after</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/502003#M133948</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;Thanks. This is nice.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;By the way, which doens't belong to this thread though is that&lt;/P&gt;
&lt;P&gt;I use below code of yours like a built-in function in sas in every program I use. So handy. However, I could not modify your code to deduplicate the repeated values for each individual. So I use proc nodukpey on the resulting dataset.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sql;&lt;BR /&gt;create table have1(drop=r) as /*N=6,588,823 and unique kids N=2,862,721*/&lt;BR /&gt;select *,missing(cat_var) as flag_missing,range(calculated flag_missing) as r&lt;BR /&gt;from have /*N=9,876,767*/&lt;BR /&gt;group by child_id&lt;BR /&gt;having ((r=0)*visit)=min(visit) or (&lt;SPAN&gt;cat_var&amp;nbsp;&lt;/SPAN&gt;ne ' ')&lt;BR /&gt;order by child_id,visit;&lt;BR /&gt;quit;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sort data=have1 nodupkey out=have2;&lt;/P&gt;
&lt;P&gt;by child_id cat_var;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Oct 2018 17:39:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/502003#M133948</guid>
      <dc:creator>Cruise</dc:creator>
      <dc:date>2018-10-05T17:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: Last observation carried to previous missing and the missing after</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/502007#M133950</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/132289"&gt;@Cruise&lt;/a&gt;&amp;nbsp;for your acknowledgement. Answering your questions has always made me learn more and this thread being touch special as It's always pleasure and privilege to read/be part of thread when&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15410"&gt;@data_null__&lt;/a&gt;&amp;nbsp;has participated. I shamelessly plagiarized a lot of DN's code from SAS L and continue to learn just by reading the master's posts. I am sure DN is so used to having many followers like me. My dream is to become as good as the geniuses&amp;nbsp; DN, PD, PG stats. (unrealistic eh lol)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With reference to your other post, I am glad you were able to modify on your own however should you need help, never hesitate. Besides our professional and personal life, we are all a SAS family here where we can freely &lt;EM&gt;&lt;STRONG&gt;ask, find and share. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/STRONG&gt;&lt;/EM&gt; Take care&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Oct 2018 17:55:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Last-observation-carried-to-previous-missing-and-the-missing/m-p/502007#M133950</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-10-05T17:55:16Z</dc:date>
    </item>
  </channel>
</rss>

