<?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: Counting the number of occurrences for a grouped variable in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367459#M87475</link>
    <description>&lt;P&gt;Just in case this opens new avenues of thinking for you, here is one way to use a PROC to create a SAS data set:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc summary data=have nway;&lt;/P&gt;
&lt;P&gt;class ID;&lt;/P&gt;
&lt;P&gt;var A B;&lt;/P&gt;
&lt;P&gt;output out=want (drop=_type_ _freq_) sum=;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The WANT data set should match what you are seeking here, with one issue to consider.&amp;nbsp; You asked for a count of the non-zero values.&amp;nbsp; This is actually something a little bit different ... the sum of all the values.&lt;/P&gt;</description>
    <pubDate>Thu, 15 Jun 2017 17:43:02 GMT</pubDate>
    <dc:creator>Astounding</dc:creator>
    <dc:date>2017-06-15T17:43:02Z</dc:date>
    <item>
      <title>Counting the number of occurrences for a grouped variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367436#M87463</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have data arranged like this and I'm trying to count the number of non-zero occurrences for each ID value.&amp;nbsp; I'm trying to do this without using a PROC step and to only use a DATA step.&amp;nbsp; Please forgive me if this question has been solved elsewhere - I couldn't find this in the community.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; A&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; B&lt;/P&gt;&lt;P&gt;1000&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1&lt;/P&gt;&lt;P&gt;1000&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1&lt;/P&gt;&lt;P&gt;1000&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/P&gt;&lt;P&gt;1111&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;0&lt;/P&gt;&lt;P&gt;1111&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;0&lt;/P&gt;&lt;P&gt;1111&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/P&gt;&lt;P&gt;1111&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;1111&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;2222&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1&lt;/P&gt;&lt;P&gt;2222&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1&lt;/P&gt;&lt;P&gt;2222&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/P&gt;&lt;P&gt;2222&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/P&gt;&lt;P&gt;2222&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The final result set should look this:&lt;/P&gt;&lt;P&gt;ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; A&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; B&lt;/P&gt;&lt;P&gt;1000&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2&lt;/P&gt;&lt;P&gt;1111&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&lt;/P&gt;&lt;P&gt;2222&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your help is greatly appreciated - thank you in advance!&lt;/P&gt;&lt;P&gt;~E&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2017 16:49:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367436#M87463</guid>
      <dc:creator>esvenson</dc:creator>
      <dc:date>2017-06-15T16:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: Counting the number of occurrences for a grouped variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367447#M87466</link>
      <description>Why not a PROC if that's easier/better?</description>
      <pubDate>Thu, 15 Jun 2017 17:19:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367447#M87466</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2017-06-15T17:19:42Z</dc:date>
    </item>
    <item>
      <title>Re: Counting the number of occurrences for a grouped variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367449#M87467</link>
      <description>&lt;P&gt;It needs to be a data step because the results will later be&amp;nbsp;combined into another data step.&amp;nbsp; There are other variables that will need to be in the dataset, I was just trying to keep it simple showing only those three generic ones.&amp;nbsp; I don't really want to use a PROC and unsure if it's possible to use the results of a PROC step into another DATA step.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;E&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2017 17:23:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367449#M87467</guid>
      <dc:creator>esvenson</dc:creator>
      <dc:date>2017-06-15T17:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: Counting the number of occurrences for a grouped variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367450#M87468</link>
      <description>&lt;P&gt;You could certainly do it in a data step if it was sorted first ... but that requires PROC SORT ... I guess you can't do this without a PROC.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2017 17:25:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367450#M87468</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-06-15T17:25:03Z</dc:date>
    </item>
    <item>
      <title>Re: Counting the number of occurrences for a grouped variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367451#M87469</link>
      <description>&lt;P&gt;I have no problem using a PROC SORT first - I only meant that the final result would be unusable for what I later need as a PROC MEANS or PROC FREQ.&amp;nbsp; Hope this clarifies.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;E&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2017 17:26:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367451#M87469</guid>
      <dc:creator>esvenson</dc:creator>
      <dc:date>2017-06-15T17:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: Counting the number of occurrences for a grouped variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367452#M87470</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/66202"&gt;@esvenson&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;It needs to be a data step because the results will later be&amp;nbsp;combined into another data step.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Well, that's not the way SAS works. You can run a PROC, have the results in a SAS data set, and then that data set combined with other data in a data step.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;lt;blockquote&amp;gt;There are other variables that will need to be in the dataset&amp;lt;/blockquote&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yep. PROCs work here too. See my paragraph above. There's nothing you have said that forces you to use DATA step only.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2017 17:27:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367452#M87470</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2017-06-15T17:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: Counting the number of occurrences for a grouped variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367453#M87471</link>
      <description>&lt;P&gt;Ok, good to know.&amp;nbsp; Do you have an idea on how to do it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help,&lt;/P&gt;&lt;P&gt;E&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2017 17:29:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367453#M87471</guid>
      <dc:creator>esvenson</dc:creator>
      <dc:date>2017-06-15T17:29:26Z</dc:date>
    </item>
    <item>
      <title>Re: Counting the number of occurrences for a grouped variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367456#M87473</link>
      <description>&lt;P&gt;You can use RETAIN statement and FIRST. and LAST. , Something like this....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA WANT;
INFILE DATALINES;
INPUT ID A B;
DATALINES;
1000 0 1
1000 0 1
1000 1 0
1111 1 0
1111 1 0
1111 1 0
1111 0 1
1111 0 1
2222 0 1
2222 0 1
2222 1 0
2222 1 0
2222 0 1
;
RUN;
PROC SORT DATA=WANT;
BY ID;
RUN;

DATA WANT1(DROP=A B);
SET WANT;
RETAIN Count_A Count_B;
BY ID ;
IF FIRST.ID THEN DO;count_A=A;Count_B=B;END;
ELSE DO;Count_A=Count_A+A;Count_B=Count_B+B;END;
IF LAST.ID THEN OUTPUT;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 15 Jun 2017 17:36:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367456#M87473</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2017-06-15T17:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: Counting the number of occurrences for a grouped variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367459#M87475</link>
      <description>&lt;P&gt;Just in case this opens new avenues of thinking for you, here is one way to use a PROC to create a SAS data set:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc summary data=have nway;&lt;/P&gt;
&lt;P&gt;class ID;&lt;/P&gt;
&lt;P&gt;var A B;&lt;/P&gt;
&lt;P&gt;output out=want (drop=_type_ _freq_) sum=;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The WANT data set should match what you are seeking here, with one issue to consider.&amp;nbsp; You asked for a count of the non-zero values.&amp;nbsp; This is actually something a little bit different ... the sum of all the values.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2017 17:43:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367459#M87475</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2017-06-15T17:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: Counting the number of occurrences for a grouped variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367460#M87476</link>
      <description>&lt;P&gt;Method one:&lt;BR /&gt;proc sql;&lt;/P&gt;
&lt;P&gt;create table want as&lt;BR /&gt; select distinct(ID),sum(A) as A, sum(B) as B from have group by ID;&lt;BR /&gt;quit;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Method two:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;proc summary data=have;&lt;BR /&gt;class id;&lt;BR /&gt;var A B;&lt;BR /&gt;ways 1;&lt;BR /&gt;output out=want sum(A B)=A B;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Method three:&lt;/P&gt;
&lt;P&gt;data want;&lt;BR /&gt; set have;&lt;BR /&gt; by id;&lt;BR /&gt; retain sumA sumB;&lt;BR /&gt; if first.id then call missing(sumA,sumB);&lt;BR /&gt; sumA+A; sumB+B;&lt;BR /&gt; if last.id then output;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2017 17:46:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367460#M87476</guid>
      <dc:creator>slchen</dc:creator>
      <dc:date>2017-06-15T17:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: Counting the number of occurrences for a grouped variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367475#M87486</link>
      <description>Dear slchen,&lt;BR /&gt;Thank you so much for taking the time to provide different ways of doing this. I tried all three and they all worked great. Thanks again.&lt;BR /&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;~E</description>
      <pubDate>Thu, 15 Jun 2017 18:45:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Counting-the-number-of-occurrences-for-a-grouped-variable/m-p/367475#M87486</guid>
      <dc:creator>esvenson</dc:creator>
      <dc:date>2017-06-15T18:45:08Z</dc:date>
    </item>
  </channel>
</rss>

