<?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 calcuate median in proc report in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-calcuate-median-in-proc-report/m-p/626595#M184843</link>
    <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; PROC REPORT could do it, but it will be far easier to do it in the DATA step where you read the data using ARRAY processing. I think you want something like this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="length_of_stay_each_year.png" style="width: 561px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/36322iB6602F226C572B2D/image-size/large?v=v2&amp;amp;px=999" role="button" title="length_of_stay_each_year.png" alt="length_of_stay_each_year.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Which I accomplished with this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data fakedata;
  length service_type $10;
  input ID $ cy2014 cy2015 cy2016 cy2017 cy2018 cy2019 service_type $ los;
  
  ** use array processing to create length of stay variables;
  ** for each year. IF "CYxxxx" variable is 1 then STAYxxxx variable;
  ** is assigned the LOS value for that observation;
  array arrcy cy2014-cy2019;
  array arrlos stay2014-stay2019;
  do i = 1 to dim(arrcy);
     if arrcy(i) = 1 then arrlos(i) = los;
	 else if arrcy(i) = 0 then arrlos(i) = 0;
  end;
datalines;
1	0	0	0	0	1	0	Outpatient	313
2	0	1	0	0	0	0	Hospital	14
3	0	0	0	0	0	1	Outpatient	59
4	0	0	0	0	1	0	Outpatient	104
5	0	0	0	0	0	1	Outpatient	57
6	0	0	0	0	0	1	Outpatient	34
7	0	0	0	0	1	0	ER	6
8	0	0	1	0	0	0	ER	4
9	0	0	1	0	0	0	HomeCare	332
10	1	0	0	0	0	0	Outpatient	25
11	0	0	0	0	1	0	Clinic	624
12	0	0	1	0	0	0	Outpatient	41
13	1	0	0	0	0	0	ER	4
14	0	1	0	0	0	0	Outpatient	95
15	0	0	0	1	0	0	ER	7
16	0	0	0	1	0	0	ER	29
17	1	0	0	0	0	0	Outpatient	258
18	0	0	0	1	0	0	Outpatient	36
19	0	0	0	0	0	1	HomeCare	38
20	0	0	0	0	1	0	Outpatient	362
21	0	0	0	0	1	0	Outpatient	107
22	1	0	0	0	0	0	Outpatient	252
23	0	0	0	0	1	0	Hospital	14
24	0	0	0	0	1	0	Outpatient	15
25	1	0	0	0	0	0	HomeCare	76
26	0	1	0	0	0	0	HomeCare	21
27	0	0	0	0	0	1	ER	3
28	0	1	0	0	0	0	Clinic	261
29	1	0	0	0	0	0	Outpatient	187
30	0	0	0	0	0	1	Outpatient	75
;
run;
  
title; footnote;
proc report data=fakedata ;
column service_type  
       ('2014' cy2014 stay2014) ('2015' cy2015 stay2015) 
       ('2016' cy2016 stay2016) ('2017' cy2017 stay2017) 
       ('2018' cy2018 stay2018) ('2019(YTD)' cy2019 stay2019) ;
define service_type / group  'Program Type';
define cy2014 / sum "CY";
define stay2014 / sum "LOS";
define cy2015 / sum "CY";
define stay2015 / sum "LOS";
define cy2016 / sum "CY";
define stay2016 / sum "LOS";
define cy2017 / sum  "CY";
define stay2017 / sum  "LOS";
define cy2018 / sum "CY";
define stay2018 / sum "LOS";
define cy2019 / sum "CY";
define stay2019 / sum "LOS";
 
rbreak after / summarize;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;cynthia&lt;/P&gt;</description>
    <pubDate>Sat, 22 Feb 2020 03:07:03 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2020-02-22T03:07:03Z</dc:date>
    <item>
      <title>How to calcuate median in proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calcuate-median-in-proc-report/m-p/626559#M184827</link>
      <description>&lt;P&gt;Is it possible to calculate median in Proc report?&lt;/P&gt;&lt;P&gt;I have a dataset that has a client ID, years, service type and length of stay (los).&lt;/P&gt;&lt;P&gt;What I want to do is calculate using proc report (or maybe tabulate??) the median length of stay by service type for each year.&lt;/P&gt;&lt;P&gt;Is that possible or do I have to do this in proc means? or is there another way of doing this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Asking because I am trying to use proc report to have columns that count the number of '1's under each year and then have another column that will calculate the median los by service type for each year. You will notice in my sample below that no two years have a '1' in the same row.&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;data have;
input ID $ cy2014 cy2015 cy2016 cy2017 cy2018 cy2019 service_type $ los;
datalines;
1	0	0	0	0	1	0	Outpatient	313
2	0	1	0	0	0	0	Hospital	14
3	0	0	0	0	0	1	Outpatient	59
4	0	0	0	0	1	0	Outpatient	104
5	0	0	0	0	0	1	Outpatient	57
6	0	0	0	0	0	1	Outpatient	34
7	0	0	0	0	1	0	ER	6
8	0	0	1	0	0	0	ER	4
9	0	0	1	0	0	0	HomeCare	332
10	1	0	0	0	0	0	Outpatient	25
11	0	0	0	0	1	0	Clinic	624
12	0	0	1	0	0	0	Outpatient	41
13	1	0	0	0	0	0	ER	4
14	0	1	0	0	0	0	Outpatient	95
15	0	0	0	1	0	0	ER	7
16	0	0	0	1	0	0	ER	29
17	1	0	0	0	0	0	Outpatient	258
18	0	0	0	1	0	0	Outpatient	36
19	0	0	0	0	0	1	HomeCare	38
20	0	0	0	0	1	0	Outpatient	362
21	0	0	0	0	1	0	Outpatient	107
22	1	0	0	0	0	0	Outpatient	252
23	0	0	0	0	1	0	Hospital	14
24	0	0	0	0	1	0	Outpatient	15
25	1	0	0	0	0	0	HomeCare	76
26	0	1	0	0	0	0	HomeCare	21
27	0	0	0	0	0	1	ER	3
28	0	1	0	0	0	0	Clinic	261
29	1	0	0	0	0	0	Outpatient	187
30	0	0	0	0	0	1	Outpatient	75
;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This is the code that I am using to count the '1's for each year by each service type. How can I add to this to a code to calculate the median los by each service type and each year?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc report data=have ;
column service_type  cy2014 cy2015 cy2016 cy2017 cy2018 cy2019;
define service_type / group  width=50 'Program Type';
define cy2014 / sum '2014';
define cy2015 / sum '2015';
define cy2016 / sum '2016';
define cy2017 / sum '2017';
define cy2018 / sum '2018';
define cy2019 / sum '2019(YTD)';
run;&lt;/PRE&gt;&lt;P&gt;Thanks in Advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 20:54:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calcuate-median-in-proc-report/m-p/626559#M184827</guid>
      <dc:creator>sas_student1</dc:creator>
      <dc:date>2020-02-21T20:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to calcuate median in proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calcuate-median-in-proc-report/m-p/626561#M184829</link>
      <description>&lt;P&gt;According to this, you can compute medians in PROC REPORT&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=proc&amp;amp;docsetTarget=p1hagdk7qeis65n1659yii98d8s1.htm&amp;amp;locale=en"&gt;https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=proc&amp;amp;docsetTarget=p1hagdk7qeis65n1659yii98d8s1.htm&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just replace SUM with MEDIAN in your code.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 20:58:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calcuate-median-in-proc-report/m-p/626561#M184829</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-02-21T20:58:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to calcuate median in proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calcuate-median-in-proc-report/m-p/626562#M184830</link>
      <description>Hi:&lt;BR /&gt;  I am not sure what your LOS variable is used for, but you don't list it on the report.&lt;BR /&gt;&lt;BR /&gt;  You say you want this:&lt;BR /&gt;"length of stay by service type for each year."&lt;BR /&gt;But you don't show length of stay for each year. I only see one value for LOS -- assuming that is length of stay. &lt;BR /&gt;&lt;BR /&gt;To get the sum for each column is easy, you just need to add an RBREAK AFTER / SUMMARIZE; statement to your PROC REPORT code.&lt;BR /&gt;&lt;BR /&gt;Since I don't understand how you are going to calculate Length of Stay, that is harder to make any constructive suggestions, since LOS is not on the report.&lt;BR /&gt;Cynthia</description>
      <pubDate>Fri, 21 Feb 2020 21:06:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calcuate-median-in-proc-report/m-p/626562#M184830</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2020-02-21T21:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to calcuate median in proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calcuate-median-in-proc-report/m-p/626566#M184833</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Yes LOS (length of stay) is only showing by service type. But if you note no two years have a 1 indicator in the same row. so if there is a 1 in cy2014 you will note that none of the other years have a 1. Is it possible that in proc report a statement such as "if cy2014=1 then calculate median by service type and label the median as los for cy2014" and then &amp;nbsp;"if cy2015=1 then calculate median by service type and label the median as los for cy2015" and so far?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to get to the bottom table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;LOS is already calculate I just want to try to calculate the median LOS by each service type by the year. So something like the below as the result.&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;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Program Type&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;2014&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Median LOS 2014&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;2015&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Median LOS2015&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;2016&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Median LOS 2016&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;2017&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Median LOS 2017&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;2018&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Median LOS 2018&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;2019&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Median LOS 2019&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Clinic&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;261&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;624&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;ER&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;18&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;HomeCare&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;76&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;21&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;332&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;38&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Hospital&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;14&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;14&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Outpatie&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;219.5&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;95&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;41&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;36&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;107&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;58&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Fri, 21 Feb 2020 21:34:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calcuate-median-in-proc-report/m-p/626566#M184833</guid>
      <dc:creator>sas_student1</dc:creator>
      <dc:date>2020-02-21T21:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to calcuate median in proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calcuate-median-in-proc-report/m-p/626595#M184843</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; PROC REPORT could do it, but it will be far easier to do it in the DATA step where you read the data using ARRAY processing. I think you want something like this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="length_of_stay_each_year.png" style="width: 561px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/36322iB6602F226C572B2D/image-size/large?v=v2&amp;amp;px=999" role="button" title="length_of_stay_each_year.png" alt="length_of_stay_each_year.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Which I accomplished with this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data fakedata;
  length service_type $10;
  input ID $ cy2014 cy2015 cy2016 cy2017 cy2018 cy2019 service_type $ los;
  
  ** use array processing to create length of stay variables;
  ** for each year. IF "CYxxxx" variable is 1 then STAYxxxx variable;
  ** is assigned the LOS value for that observation;
  array arrcy cy2014-cy2019;
  array arrlos stay2014-stay2019;
  do i = 1 to dim(arrcy);
     if arrcy(i) = 1 then arrlos(i) = los;
	 else if arrcy(i) = 0 then arrlos(i) = 0;
  end;
datalines;
1	0	0	0	0	1	0	Outpatient	313
2	0	1	0	0	0	0	Hospital	14
3	0	0	0	0	0	1	Outpatient	59
4	0	0	0	0	1	0	Outpatient	104
5	0	0	0	0	0	1	Outpatient	57
6	0	0	0	0	0	1	Outpatient	34
7	0	0	0	0	1	0	ER	6
8	0	0	1	0	0	0	ER	4
9	0	0	1	0	0	0	HomeCare	332
10	1	0	0	0	0	0	Outpatient	25
11	0	0	0	0	1	0	Clinic	624
12	0	0	1	0	0	0	Outpatient	41
13	1	0	0	0	0	0	ER	4
14	0	1	0	0	0	0	Outpatient	95
15	0	0	0	1	0	0	ER	7
16	0	0	0	1	0	0	ER	29
17	1	0	0	0	0	0	Outpatient	258
18	0	0	0	1	0	0	Outpatient	36
19	0	0	0	0	0	1	HomeCare	38
20	0	0	0	0	1	0	Outpatient	362
21	0	0	0	0	1	0	Outpatient	107
22	1	0	0	0	0	0	Outpatient	252
23	0	0	0	0	1	0	Hospital	14
24	0	0	0	0	1	0	Outpatient	15
25	1	0	0	0	0	0	HomeCare	76
26	0	1	0	0	0	0	HomeCare	21
27	0	0	0	0	0	1	ER	3
28	0	1	0	0	0	0	Clinic	261
29	1	0	0	0	0	0	Outpatient	187
30	0	0	0	0	0	1	Outpatient	75
;
run;
  
title; footnote;
proc report data=fakedata ;
column service_type  
       ('2014' cy2014 stay2014) ('2015' cy2015 stay2015) 
       ('2016' cy2016 stay2016) ('2017' cy2017 stay2017) 
       ('2018' cy2018 stay2018) ('2019(YTD)' cy2019 stay2019) ;
define service_type / group  'Program Type';
define cy2014 / sum "CY";
define stay2014 / sum "LOS";
define cy2015 / sum "CY";
define stay2015 / sum "LOS";
define cy2016 / sum "CY";
define stay2016 / sum "LOS";
define cy2017 / sum  "CY";
define stay2017 / sum  "LOS";
define cy2018 / sum "CY";
define stay2018 / sum "LOS";
define cy2019 / sum "CY";
define stay2019 / sum "LOS";
 
rbreak after / summarize;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;cynthia&lt;/P&gt;</description>
      <pubDate>Sat, 22 Feb 2020 03:07:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calcuate-median-in-proc-report/m-p/626595#M184843</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2020-02-22T03:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to calcuate median in proc report</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-calcuate-median-in-proc-report/m-p/627707#M185351</link>
      <description>&lt;P&gt;Ah! I see what you did there! Thank you!!!&lt;/P&gt;</description>
      <pubDate>Wed, 26 Feb 2020 23:48:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-calcuate-median-in-proc-report/m-p/627707#M185351</guid>
      <dc:creator>sas_student1</dc:creator>
      <dc:date>2020-02-26T23:48:57Z</dc:date>
    </item>
  </channel>
</rss>

