<?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: Fetching count and max for each row based on the list in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554513#M154261</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/263875"&gt;@SAS_prep&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;how do i get variable name for the column max?&lt;BR /&gt;maxvar = vname(v[whichn(max, of v(*))]); will work?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That should work. But it will search for matching max value over the whole array. That is it will NOT be limited to just the variables listed in the value of VARLIST for this particular observation.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 27 Apr 2019 20:28:43 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2019-04-27T20:28:43Z</dc:date>
    <item>
      <title>Fetching count and max for each row based on the list</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554465#M154243</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a Variable_ID and 8 quarters of data. This data is the output of a proc compare and I have created a varlist based on required quarters. i need the number of non missing and max for the varlist. I have attached the data and the desired output.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried in two different ways but none of them giving me the correct results. It is considering all the columns.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Code1:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;data want;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;set date;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Count=N(Varlist);&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Max=MAX(Varlist);&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Run;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Code2:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Proc Sql;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Select count(variable_id) INTO: count from date; quit;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Data_null_;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;call symput('count1',left(count));&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;run;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Proc Sql;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Select varlist INTO: list1&amp;nbsp; :list&amp;amp;count. from date; quit;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;%macro dlt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;data want;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;set date;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;%do I = 1 to &amp;amp;count1.;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;count=N(of &amp;amp;&amp;amp;list&amp;amp;I.);&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;max=Max(of &amp;amp;&amp;amp;list&amp;amp;I.);&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;%end;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;%mend;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;%dlt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Am i missing something or is there any other way to achieve the desired output? please help&lt;/P&gt;</description>
      <pubDate>Sat, 27 Apr 2019 10:35:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554465#M154243</guid>
      <dc:creator>SAS_prep</dc:creator>
      <dc:date>2019-04-27T10:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching count and max for each row based on the list</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554466#M154244</link>
      <description>&lt;P&gt;Sorry i don't understand what you are trying to do. Please post code using the window opened by the running man icon and post data as data step with datalines.&lt;/P&gt;</description>
      <pubDate>Sat, 27 Apr 2019 10:54:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554466#M154244</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-04-27T10:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching count and max for each row based on the list</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554467#M154245</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data date;
Input variable_id $3. @5 _2014Q1 @7 _2014Q2 @9 _2014Q3  @11 _2014Q4 @13 _2015Q1 @15 _2015Q2 @17 _2015Q3 @19 _2015Q4  @21 Varlist $100.;
Datalines;
1aw 3 . 2 . 5 . . . _2014Q1,_2014Q2,_2014Q3,_2014Q4
5td . . . 1 . 8 . . _2014Q1,_2014Q2,_2014Q3,_2014Q4,_2015Q1
t6v 9 . . . . . . . _2014Q1,_2014Q2,_2014Q3,_2014Q4
n4a 2 6 5 4 4 . . . _2014Q1,_2014Q2,_2014Q3,_2014Q4,_2015Q1,_2015Q2,_2015Q3,_2015Q4
p24 . . . . . . . 2 _2015Q1,_2015Q2,_2015Q3,_2015Q4
;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/**Code1**/

data want;
set date;
Count=N(Varlist);
Max=MAX(Varlist);
Run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*code 2*/

Proc Sql;
Select count(variable_id) INTO: count from date; quit;

Data_null_;
call symput('count1',left(count));
run;

Proc Sql;
Select varlist INTO: list1  :list&amp;amp;count. from date; quit;

%macro dlt;
data want;
set date;
%do I = 1 to &amp;amp;count1.;	
count=N(of &amp;amp;&amp;amp;list&amp;amp;I.);
max=Max(of &amp;amp;&amp;amp;list&amp;amp;I.);
%end;
%mend;
%dlt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*Desired output*/

Variable_ID	Count	Max
1aw	2	3
5td	1	1
t6v	1	9
n4a	5	6
p24	1	2&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;as requested i have posted using insert SAS code option.&lt;/P&gt;</description>
      <pubDate>Sat, 27 Apr 2019 11:17:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554467#M154245</guid>
      <dc:creator>SAS_prep</dc:creator>
      <dc:date>2019-04-27T11:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching count and max for each row based on the list</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554483#M154251</link>
      <description>&lt;P&gt;Given that you have already created the data set DATE, I think this is what you are trying to accomplish:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
   set date;
   array dates {8} _201: ;
   count = 0;
   do k=1 to 8;
      if dates{k} &amp;gt; . and index(varlist, strip(vname(dates{k} ) ) ) then do;
         count + 1;
         maxval = max(maxval, dates{k});
      end;
   end;
   drop k;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;It's untested code, but looks about right.&amp;nbsp; Feel free to ask if you have questions.&lt;/P&gt;</description>
      <pubDate>Sat, 27 Apr 2019 15:34:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554483#M154251</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2019-04-27T15:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching count and max for each row based on the list</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554485#M154252</link>
      <description>&lt;P&gt;So you want to use the VARLIST as the names of the variables to check?&lt;/P&gt;
&lt;P&gt;You can use the VVALUEX() function to find the value of variable whose name is contained in the string argument to the function.&lt;/P&gt;
&lt;P&gt;You can use the INPUT() function to convert the result back into a number.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data expect;
input Variable_ID $	Count	Max ;
cards;
1aw	2	3
5td	1	1
t6v	1	9
n4a	5	6
p24	1	2
;
data have;
  infile cards truncover;
  input variable_id $ _2014Q1-_2014Q4 _2015Q1-_2015Q4 Varlist $100.;
cards;
1aw 3 . 2 . 5 . . . _2014Q1,_2014Q2,_2014Q3,_2014Q4
5td . . . 1 . 8 . . _2014Q1,_2014Q2,_2014Q3,_2014Q4,_2015Q1
t6v 9 . . . . . . . _2014Q1,_2014Q2,_2014Q3,_2014Q4
n4a 2 6 5 4 4 . . . _2014Q1,_2014Q2,_2014Q3,_2014Q4,_2015Q1,_2015Q2,_2015Q3,_2015Q4
p24 . . . . . . . 2 _2015Q1,_2015Q2,_2015Q3,_2015Q4
;

data want;
  set have ;
  do i=1 to countw(varlist,',');
    value=input(vvaluex(scan(varlist,i,',')),??32.);
    if not missing(value) then do;
      count=sum(count,1);
      max=max(max,value);
    end;
  end;
  drop value;
run;

proc compare data=want compare=expect;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;The COMPARE Procedure
Comparison of WORK.WANT with WORK.EXPECT
(Method=EXACT)

Observation Summary

Observation      Base  Compare

First Obs           1        1
Last  Obs           5        5

Number of Observations in Common: 5.
Total Number of Observations Read from WORK.WANT: 5.
Total Number of Observations Read from WORK.EXPECT: 5.

Number of Observations with Some Compared Variables Unequal: 0.
Number of Observations with All Compared Variables Equal: 5.

NOTE: No unequal values were found. All values compared are exactly equal.
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Apr 2019 16:04:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554485#M154252</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-04-27T16:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching count and max for each row based on the list</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554503#M154257</link>
      <description>it says ERROR: Too many variables defined for the dimension(s) specified for the array dates.</description>
      <pubDate>Sat, 27 Apr 2019 18:26:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554503#M154257</guid>
      <dc:creator>SAS_prep</dc:creator>
      <dc:date>2019-04-27T18:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching count and max for each row based on the list</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554504#M154258</link>
      <description>how do i get variable name for the column max?&lt;BR /&gt;maxvar = vname(v[whichn(max, of v(*))]); will work?</description>
      <pubDate>Sat, 27 Apr 2019 18:38:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554504#M154258</guid>
      <dc:creator>SAS_prep</dc:creator>
      <dc:date>2019-04-27T18:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching count and max for each row based on the list</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554505#M154259</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/263875"&gt;@SAS_prep&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;it says ERROR: Too many variables defined for the dimension(s) specified for the array dates.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Do you have other variable names that also start with _201 ?&amp;nbsp; Do you want to include them in the array? Or not?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that there is no need to include a dimension when you have given a list of variable names.&amp;nbsp; SAS can count for you.&lt;/P&gt;
&lt;P&gt;Some people use a * where the dimension is listed, but you don't even need to do that. Just use the array name and the variable list.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;array dates _201: ;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You only need to specify the dimension(s) when for special situations. Like:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;to automatically name the variables by adding numeric suffix to the array name.&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;Or create a temporary array.&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;Or you want to use non-standard indexes.
&lt;UL&gt;
&lt;LI&gt;Either multiple dimensions&lt;/LI&gt;
&lt;LI&gt;or non-standard lower/upper bounds on the indexes.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Sat, 27 Apr 2019 18:59:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554505#M154259</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-04-27T18:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching count and max for each row based on the list</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554509#M154260</link>
      <description>This means your actual data contains more variables than you defined in DATE.  in that case the safest way to proceed is to replace _201:  within the Array statement.  Instead, spell out the names of all 8 variables.</description>
      <pubDate>Sat, 27 Apr 2019 19:46:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554509#M154260</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2019-04-27T19:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching count and max for each row based on the list</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554513#M154261</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/263875"&gt;@SAS_prep&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;how do i get variable name for the column max?&lt;BR /&gt;maxvar = vname(v[whichn(max, of v(*))]); will work?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That should work. But it will search for matching max value over the whole array. That is it will NOT be limited to just the variables listed in the value of VARLIST for this particular observation.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Apr 2019 20:28:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554513#M154261</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-04-27T20:28:43Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching count and max for each row based on the list</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554558#M154277</link>
      <description>&lt;PRE&gt;Code1:

 

data want;
set date;
Count=N(Varlist);
Max=MAX(Varlist);
Run;&lt;/PRE&gt;
&lt;P&gt;Instead of the above, try with the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data want;
   set date;
   count = n(of _:);
   max = max(of _:);
   *put count = max =;
run;&lt;/PRE&gt;</description>
      <pubDate>Sun, 28 Apr 2019 04:13:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554558#M154277</guid>
      <dc:creator>KachiM</dc:creator>
      <dc:date>2019-04-28T04:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching count and max for each row based on the list</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554928#M154424</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;_2014Q1	_2014Q2	_2014Q3	_2014Q4	_2015Q1
210.48	82.16	1148.04	10.34	12.77&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;the max value for the above is 1148.04 when i run the code it is giving 210.48&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2019 05:52:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554928#M154424</guid>
      <dc:creator>SAS_prep</dc:creator>
      <dc:date>2019-04-30T05:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching count and max for each row based on the list</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554949#M154428</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/263875"&gt;@SAS_prep&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does below code give you what you're after?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data have;
  infile datalines truncover;
  Input variable_id $3. @5 _2014Q1 @7 _2014Q2 @9 _2014Q3  @11 _2014Q4 @13 _2015Q1 @15 _2015Q2 @17 _2015Q3 @19 _2015Q4  @21 Varlist $100.;
  Datalines;
1aw 3 . 2 . 5 . . . _2014Q1,_2014Q2,_2014Q3,_2014Q4
5td . . . 1 . 8 . . _2014Q1,_2014Q2,_2014Q3,_2014Q4,_2015Q1
t6v 9 . . . . . . . _2014Q1,_2014Q2,_2014Q3,_2014Q4
n4a 2 6 5 4 4 . . . _2014Q1,_2014Q2,_2014Q3,_2014Q4,_2015Q1,_2015Q2,_2015Q3,_2015Q4
p24 . . . . . . . 2 _2015Q1,_2015Q2,_2015Q3,_2015Q4
;
run;

data want(drop=_i);
  set have;
  length count_vars 8 max_val 8 max_varName $32;
  array dtvars {*} _201:;
  count_vars=countw(varlist,',');
  do _i=1 to dim(dtvars);
    if find(varlist,vname(dtvars[_i]),'i')&amp;gt;0 then 
      do;
        if max_val&amp;lt;dtvars[_i] then 
          do;
            max_val=dtvars[_i];
            max_varName=vname(dtvars[_i]);
          end;
      end;
  end;
run;

proc print data=want;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 Apr 2019 08:46:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Fetching-count-and-max-for-each-row-based-on-the-list/m-p/554949#M154428</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2019-04-30T08:46:50Z</dc:date>
    </item>
  </channel>
</rss>

