<?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: Replacing missing values by previous observation in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/401534#M66780</link>
    <description>&lt;P&gt;I am amazed to see retain function can do that. I thought it is only used to keep variable (Columns) in first place in newly created data set. (when used after data step, before set). What I am trying to do is instead of retaining values after noon missing values, I want to replace missing values with the leading values;&lt;/P&gt;&lt;P&gt;what I have&lt;/P&gt;&lt;P&gt;Country ID Freq total;&lt;/P&gt;&lt;P&gt;CAD A 290 .&lt;/P&gt;&lt;P&gt;CAD B 48 .&lt;/P&gt;&lt;P&gt;CAD C 98 436&lt;/P&gt;&lt;P&gt;US A 3592 .&lt;/P&gt;&lt;P&gt;US B 157 .&lt;/P&gt;&lt;P&gt;US C 1018 4767&lt;/P&gt;&lt;P&gt;What I want;&lt;/P&gt;&lt;P&gt;tot&lt;/P&gt;&lt;P&gt;436&lt;/P&gt;&lt;P&gt;436&lt;/P&gt;&lt;P&gt;436&lt;/P&gt;&lt;P&gt;4767&lt;/P&gt;&lt;P&gt;4767&lt;/P&gt;&lt;P&gt;4767&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can u suggest some thing for that please.&lt;/P&gt;&lt;P&gt;And thanks again for telling me something totally new&lt;/P&gt;</description>
    <pubDate>Thu, 05 Oct 2017 22:14:58 GMT</pubDate>
    <dc:creator>omer2020</dc:creator>
    <dc:date>2017-10-05T22:14:58Z</dc:date>
    <item>
      <title>Replacing missing values by previous observation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/26707#M6110</link>
      <description>I have a data where patients were prescribed medication.  I have four columns labelled ID (for a patient), prescibeddate (date of prescription), drug ( name of the treatment) and quantity ( number of pills). In some patients I have the quantity missing. What I will like to do is to replace the missing quantity with the immediate previous quantity if the previous drug is the same in that patient. OR replace the missing quantity with the next if the next drug is the same. Otherwise the missing quantity is replaced by the standard quantity which is 28 for both treatment A and treatment B.  I am working on a large data set. But as an example the original data is of the following format;&lt;BR /&gt;
&lt;BR /&gt;
ID  prescribeddate  drug  quantity&lt;BR /&gt;
1      08/jan/2008      A        28&lt;BR /&gt;
1      08/feb/2008      A        14&lt;BR /&gt;
1      08/Mar/2008     A        &lt;BR /&gt;
1      08/Apr/2008      B        56&lt;BR /&gt;
1      08/May/2008      B        &lt;BR /&gt;
2     08/Jan/2008     A        30    &lt;BR /&gt;
2     08/Mar/2009      B    &lt;BR /&gt;
2     28/Mar/2008     A        30 &lt;BR /&gt;
2      08/Mar/2008      B    14   &lt;BR /&gt;
3     08/Jan/2008     B           &lt;BR /&gt;
3     08/Mar/2009      B     56&lt;BR /&gt;
3      08/Mar/2008      A    &lt;BR /&gt;
4      08/jan/2008      A        &lt;BR /&gt;
4      08/feb/2008      A        &lt;BR /&gt;
4      08/Mar/2008     A        14&lt;BR /&gt;
4      08/Apr/2008      B        &lt;BR /&gt;
4      08/May/2008      B        &lt;BR /&gt;
     &lt;BR /&gt;
&lt;BR /&gt;
I want the new data to look as follows:&lt;BR /&gt;
&lt;BR /&gt;
ID  prescribeddate  drug  quantity&lt;BR /&gt;
1      08/jan/2008      A        28&lt;BR /&gt;
1      08/feb/2008      A        14&lt;BR /&gt;
1      08/Mar/2008     A        14&lt;BR /&gt;
1      08/Apr/2008      B        56&lt;BR /&gt;
1      08/May/2008      B       56 &lt;BR /&gt;
2     08/Jan/2008     A        30    &lt;BR /&gt;
2     08/Mar/2009      B        28&lt;BR /&gt;
2     28/Mar/2008     A        30 &lt;BR /&gt;
2      08/Mar/2008      B    14   &lt;BR /&gt;
3     08/Jan/2008     B       56    &lt;BR /&gt;
3     08/Mar/2009      B     56&lt;BR /&gt;
3      08/Mar/2008      A    28   &lt;BR /&gt;
4      08/jan/2008      A     14   &lt;BR /&gt;
4      08/feb/2008      A      14  &lt;BR /&gt;
4      08/Mar/2008     A        14&lt;BR /&gt;
4      08/Apr/2008      B        28&lt;BR /&gt;
4      08/May/2008      B   28&lt;BR /&gt;
&lt;BR /&gt;
I believe i have made myself clear. Can anyone help. Thank you.</description>
      <pubDate>Mon, 24 May 2010 12:45:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/26707#M6110</guid>
      <dc:creator>Statsconsultancy</dc:creator>
      <dc:date>2010-05-24T12:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing missing values by previous observation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/26708#M6111</link>
      <description>you can use retain function.</description>
      <pubDate>Mon, 24 May 2010 13:22:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/26708#M6111</guid>
      <dc:creator>sfsdtegsdsdgdffhgfh</dc:creator>
      <dc:date>2010-05-24T13:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing missing values by previous observation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/26709#M6112</link>
      <description>Take a look at &lt;A href="http://www.sascommunity.org/wiki/Look-Ahead_and_Look-Back" target="_blank"&gt;http://www.sascommunity.org/wiki/Look-Ahead_and_Look-Back&lt;/A&gt;</description>
      <pubDate>Mon, 24 May 2010 15:51:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/26709#M6112</guid>
      <dc:creator>Howles</dc:creator>
      <dc:date>2010-05-24T15:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing missing values by previous observation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/26710#M6113</link>
      <description>data l2;&lt;BR /&gt;
input ID prescribeddate$ 3-14 drug$ quantity;&lt;BR /&gt;
cards;&lt;BR /&gt;
1 08/jan/2008 A 28&lt;BR /&gt;
1 08/feb/2008 A 14&lt;BR /&gt;
1 08/Mar/2008 A  .&lt;BR /&gt;
1 08/Apr/2008 B 56&lt;BR /&gt;
1 08/May/2008 B  .&lt;BR /&gt;
2 08/Jan/2008 A 30 &lt;BR /&gt;
2 08/Mar/2009 B  .&lt;BR /&gt;
2 28/Mar/2008 A 30 &lt;BR /&gt;
2 08/Mar/2008 B 14 &lt;BR /&gt;
3 08/Jan/2008 B  .&lt;BR /&gt;
3 08/Mar/2009 B 56&lt;BR /&gt;
3 08/Mar/2008 A  .&lt;BR /&gt;
4 08/jan/2008 A  . &lt;BR /&gt;
4 08/feb/2008 A  .&lt;BR /&gt;
4 08/Mar/2008 A 14&lt;BR /&gt;
4 08/Apr/2008 B  .&lt;BR /&gt;
4 08/May/2008 B  .&lt;BR /&gt;
;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
data l3;&lt;BR /&gt;
set l2;&lt;BR /&gt;
retain tot;&lt;BR /&gt;
if quantity&amp;gt;. then tot=quantity;&lt;BR /&gt;
run;</description>
      <pubDate>Tue, 25 May 2010 07:21:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/26710#M6113</guid>
      <dc:creator>sas_</dc:creator>
      <dc:date>2010-05-25T07:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing missing values by previous observation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/26711#M6114</link>
      <description>Using 2 SET Statements in a single datastep:&lt;BR /&gt;
&lt;BR /&gt;
Here is the code:&lt;BR /&gt;
&lt;BR /&gt;
data l4; &lt;BR /&gt;
set l2; &lt;BR /&gt;
n=_n_; &lt;BR /&gt;
if missing(quantity) then do; &lt;BR /&gt;
do until (not missing(quantity)); &lt;BR /&gt;
n=n-1; &lt;BR /&gt;
set l2(keep=quantity) point=n; *second SET statement;&lt;BR /&gt;
end; &lt;BR /&gt;
end; &lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
Sarath Annapareddy&lt;BR /&gt;
&lt;A href="http://studysas.blogspot.com/2008/10/lag-function-how-to-obtain-information.html" target="_blank"&gt;http://studysas.blogspot.com/2008/10/lag-function-how-to-obtain-information.html&lt;/A&gt;</description>
      <pubDate>Tue, 25 May 2010 15:23:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/26711#M6114</guid>
      <dc:creator>sarathannapareddy</dc:creator>
      <dc:date>2010-05-25T15:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing missing values by previous observation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/26712#M6115</link>
      <description>data MasterRec;&lt;BR /&gt;
    do until(last.drug);&lt;BR /&gt;
      set Curr_data;&lt;BR /&gt;
      by drug quantity;&lt;BR /&gt;
      if last.quantity and not missing(quantity) then do;&lt;BR /&gt;
        q = quantity;&lt;BR /&gt;
      end;  &lt;BR /&gt;
      if missing(quantity) then do;&lt;BR /&gt;
        quantity=q;&lt;BR /&gt;
      end;  &lt;BR /&gt;
      output;&lt;BR /&gt;
    end;&lt;BR /&gt;
  run;</description>
      <pubDate>Wed, 26 May 2010 18:08:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/26712#M6115</guid>
      <dc:creator>Sandhya</dc:creator>
      <dc:date>2010-05-26T18:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing missing values by previous observation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/401534#M66780</link>
      <description>&lt;P&gt;I am amazed to see retain function can do that. I thought it is only used to keep variable (Columns) in first place in newly created data set. (when used after data step, before set). What I am trying to do is instead of retaining values after noon missing values, I want to replace missing values with the leading values;&lt;/P&gt;&lt;P&gt;what I have&lt;/P&gt;&lt;P&gt;Country ID Freq total;&lt;/P&gt;&lt;P&gt;CAD A 290 .&lt;/P&gt;&lt;P&gt;CAD B 48 .&lt;/P&gt;&lt;P&gt;CAD C 98 436&lt;/P&gt;&lt;P&gt;US A 3592 .&lt;/P&gt;&lt;P&gt;US B 157 .&lt;/P&gt;&lt;P&gt;US C 1018 4767&lt;/P&gt;&lt;P&gt;What I want;&lt;/P&gt;&lt;P&gt;tot&lt;/P&gt;&lt;P&gt;436&lt;/P&gt;&lt;P&gt;436&lt;/P&gt;&lt;P&gt;436&lt;/P&gt;&lt;P&gt;4767&lt;/P&gt;&lt;P&gt;4767&lt;/P&gt;&lt;P&gt;4767&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can u suggest some thing for that please.&lt;/P&gt;&lt;P&gt;And thanks again for telling me something totally new&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2017 22:14:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/401534#M66780</guid>
      <dc:creator>omer2020</dc:creator>
      <dc:date>2017-10-05T22:14:58Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing missing values by previous observation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/402017#M66807</link>
      <description>&lt;P&gt;&lt;EM&gt;Editor's note: this is a popular topic. We've edited the solution to be more helpful for those facing a similar challenge.&amp;nbsp; The first part here addresses the original question, and the second part addresses a more general LOCF (last observation carried forward) approach.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You apparently will go back one observation, but will go forward until a non-missing quantity is encountered, which was not how I understood your description.&amp;nbsp; In other words, if the preceding observation&amp;nbsp; is missing, then your task is a &lt;EM&gt;&lt;STRONG&gt;Next Observation Carried Back&lt;/STRONG&gt;&lt;/EM&gt; process.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think the best way to approach this is to read an ID/DRUG group once and store quantity values into a array (_Q below).&amp;nbsp; Then reread the group and when a missing quantity is encountered, read back from the array:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;

  array _q {0:10} _temporary_;
  do N=1 by 1 until (last.drug); 
    set have;
    by id drug notsorted;
    _q{N}=quantity;
  end;

  do I=1 to N;
    set have;
    do J= I-1 to N while (quantity=.);
      quantity=_q{J};
    end;
    if quantity=. then quantity=28;
    output;
  end;
  drop I J N;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Notes that the lower bound&amp;nbsp; of the _Q array should be set to 0, so that&amp;nbsp;"do J=I-1 to ..." works when I=1.&lt;/LI&gt;
&lt;LI&gt;Make sure the upper bound of array _Q will accommodate the longest series for single ID/DRUG group.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;EM&gt;For the LOCF approach,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18103"&gt;@sarathannapareddy&lt;/a&gt;&amp;nbsp;suggests the following.&lt;/EM&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;Using 2 SET Statements in a single datastep:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data l4;
 set l2;
 n=_n_;
 if missing(quantity) then
  do;
   do until (not missing(quantity));
     n=n-1;
     set l2(keep=quantity) point=n;  *second SET statement;
   end;
 end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;For here's a comparison of the original data with the output for each of these approaches. The&amp;nbsp;&lt;STRONG&gt;quantity_locf&lt;/STRONG&gt; column is the result of&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18103"&gt;@sarathannapareddy&lt;/a&gt;'s LOCF approach.&amp;nbsp; The&amp;nbsp;&lt;STRONG&gt;quantity_next_rules&lt;/STRONG&gt; column shows the output of&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31461"&gt;@mkeintz&lt;/a&gt;'s array approach that takes into account the OP's business rules.&lt;/P&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="locf.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/15822iA0DDEB2744C2B20C/image-size/large?v=v2&amp;amp;px=999" role="button" title="locf.png" alt="locf.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Oct 2017 15:42:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/402017#M66807</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2017-10-12T15:42:50Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing missing values by previous observation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/412113#M67392</link>
      <description>&lt;P&gt;@sarathannapareddy&lt;/P&gt;&lt;P&gt;This worked wonderfully, except I first had to sort in descending order (easy!).&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 09 Nov 2017 20:24:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/412113#M67392</guid>
      <dc:creator>MelissaM</dc:creator>
      <dc:date>2017-11-09T20:24:47Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing missing values by previous observation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/487990#M72010</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It worked.. but could you please explain why are we using "&amp;gt;." here and what is the use of it?&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15498"&gt;@sas_&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;data l2;&lt;BR /&gt;input ID prescribeddate$ 3-14 drug$ quantity;&lt;BR /&gt;cards;&lt;BR /&gt;1 08/jan/2008 A 28&lt;BR /&gt;1 08/feb/2008 A 14&lt;BR /&gt;1 08/Mar/2008 A .&lt;BR /&gt;1 08/Apr/2008 B 56&lt;BR /&gt;1 08/May/2008 B .&lt;BR /&gt;2 08/Jan/2008 A 30&lt;BR /&gt;2 08/Mar/2009 B .&lt;BR /&gt;2 28/Mar/2008 A 30&lt;BR /&gt;2 08/Mar/2008 B 14&lt;BR /&gt;3 08/Jan/2008 B .&lt;BR /&gt;3 08/Mar/2009 B 56&lt;BR /&gt;3 08/Mar/2008 A .&lt;BR /&gt;4 08/jan/2008 A .&lt;BR /&gt;4 08/feb/2008 A .&lt;BR /&gt;4 08/Mar/2008 A 14&lt;BR /&gt;4 08/Apr/2008 B .&lt;BR /&gt;4 08/May/2008 B .&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;data l3;&lt;BR /&gt;set l2;&lt;BR /&gt;retain tot;&lt;BR /&gt;if quantity&amp;gt;. then tot=quantity;&lt;BR /&gt;run;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 18 Aug 2018 10:51:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/487990#M72010</guid>
      <dc:creator>sravanece11</dc:creator>
      <dc:date>2018-08-18T10:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing missing values by previous observation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/487995#M72011</link>
      <description>&lt;P&gt;Any actual numeric value is considered to be greater than the dot which stands for missing.&lt;/P&gt;</description>
      <pubDate>Sat, 18 Aug 2018 11:14:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/487995#M72011</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-08-18T11:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing missing values by previous observation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/488034#M72013</link>
      <description>&lt;P&gt;The missing value (.) is treated by SAS as a less than all non-missing&amp;nbsp;numeric values, whether positive or negative.&amp;nbsp; In fact&amp;nbsp;it is less than other missing values, such as&amp;nbsp;&amp;nbsp; .A, .B, ... through .Z, but not less than ._.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Most of the time people don't bother with special missing values.&amp;nbsp; In such cases the expression&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; X &amp;gt; .&lt;/P&gt;
&lt;P&gt;is effectively the same as&lt;/P&gt;
&lt;P&gt;&amp;nbsp; not(missing(x))&lt;/P&gt;</description>
      <pubDate>Sun, 19 Aug 2018 01:41:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Replacing-missing-values-by-previous-observation/m-p/488034#M72013</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2018-08-19T01:41:21Z</dc:date>
    </item>
  </channel>
</rss>

