<?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: Drop variables contain specific string or missing values in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499212#M132793</link>
    <description>&lt;P&gt;should get rid of the variable if it has only missing values or specific string like '?' across the table&lt;/P&gt;</description>
    <pubDate>Wed, 26 Sep 2018 18:27:39 GMT</pubDate>
    <dc:creator>saivenkat</dc:creator>
    <dc:date>2018-09-26T18:27:39Z</dc:date>
    <item>
      <title>Drop variables contain specific string or missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499168#M132772</link>
      <description>&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;I see many posts around this concept, but I have unique case as I have 6000 variables approximately in a table and it has&amp;nbsp;2 million records sizing up to 100 GB. I wanted to drop the columns, if a column has either missing or a single value like '?'&lt;/P&gt;&lt;P&gt;I have been using the following program, which isn't quite optimal.&lt;/P&gt;&lt;P&gt;I have been trying to prevent accumulate these columns&amp;nbsp;as an alternative.&amp;nbsp;Can you suggest the better options, if you think of any?&lt;/P&gt;&lt;P&gt;1000+ columns exist with either missing or ? out of 6000 columns&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
set&amp;nbsp;have end=last;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if _n_ = 1 then do;
&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; declare hash cnt();
&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; rc = cnt.definekey('nmc');
&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; rc = cnt.definedata('nmc');
&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; rc = cnt.definedone();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&amp;nbsp;
array _a{*} $ _character_;
&amp;nbsp; do i=1 to dim(_a);
&amp;nbsp; &amp;nbsp;&amp;nbsp; if _a{i} ne '?' and _a{i} ne '' then do;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; nmc=vname(_a{i});
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rc = cnt.find();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if rc then do;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cnt.add();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if last then
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rc = cnt.output(dataset: "nmc_bo");&amp;nbsp;
&amp;nbsp; &amp;nbsp;&amp;nbsp; end;
end;
run;
proc sql noprint;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select name into :mv_mc separated by ',' from dictionary.columns where libname='WORK' and memname='HAVE' and type='char' and name not in
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (select nmc from nmc_bo);
quit;
%put Note: Columns that will be discarded are &amp;amp;mv_mc;
proc sql noprint;
alter table have drop &amp;amp;mv_mc.;
quit;
proc datasets lib=work nolist;
delete nmc_bo;
quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Sep 2018 16:31:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499168#M132772</guid>
      <dc:creator>saivenkat</dc:creator>
      <dc:date>2018-09-26T16:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: Drop variables contain specific string or missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499174#M132775</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/227987"&gt;@saivenkat&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;as I have 6000 variables approximately in a table&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="4"&gt;FAIL.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;Usually a sign of bad data modeling that needs to be corrected with proc transpose.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;See Maxim 49.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;After the transpose, you simply remove &lt;EM&gt;observations&lt;/EM&gt; that contain the unwanted values.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Sep 2018 16:42:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499174#M132775</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-09-26T16:42:08Z</dc:date>
    </item>
    <item>
      <title>Re: Drop variables contain specific string or missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499183#M132779</link>
      <description>&lt;P&gt;Can't agree more with &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;. DIY data model vs rule based. Ted Codd should have lived longer.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Plus though hash looks ok here as loading the names once found with conditions to the hash table(but not at all needed) and then running through the table converting to macro and then calling the macro certainly not only optimal rather not desirable in the first place.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could simply concatenate vars aka vnames once found&amp;nbsp; and use call symputx&lt;/P&gt;</description>
      <pubDate>Wed, 26 Sep 2018 16:53:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499183#M132779</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-09-26T16:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: Drop variables contain specific string or missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499196#M132786</link>
      <description>&lt;P&gt;Just to clarify ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If just one value is missing and all the rest are valid, get rid of the variable?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If just one value is "?" and all the rest are valid, get rid of the variable?&lt;/P&gt;</description>
      <pubDate>Wed, 26 Sep 2018 17:34:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499196#M132786</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2018-09-26T17:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: Drop variables contain specific string or missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499205#M132788</link>
      <description>&lt;P&gt;Currently you are looping 6000*nrows, but if you keep a track of the columns already disqualified there is no need to consider them again. Here is using a hash iterator to do it. Plus it makes the drop step a bit easier.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Should be n^2 complexity vs n * (n+1)/2 average case complexity now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've created some dummy data and moved the data output step outside of the loop. I got 30 seconds vs 0.18.&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;
   array c[6000] $1 _a1-_a6000;
   do _n_=1 to 10000;
      do i=1 to dim(c);
         c[i]=ifC(ranuni(123)&amp;gt;.99 and i&amp;gt;3,'?','x');;
         end;
      output;
      end;
   run;
data _null_;
   set have;
   run;
data _null_;
   set have end=last;  
   array _a{*} $ _character_;
   length name $12;
   
   if _n_ = 1 then do;
      call missing(idx, name);
      declare hash miss (ordered:"a");
      
      miss.definekey("idx");
      miss.definedata('idx','name');
      miss.definedone();

      declare hiter iter('miss');
      do idx=1 to dim(_a);
         miss.add(key:idx,data:idx,data:vname(_a[idx]));
         end;
      end; 
   rc=iter.first();
   do while (rc = 0);
      if _a[idx] eq '?' then do; 
         _x=idx;
         rc=iter.next();
         miss.remove(key:_x);
         end;
      else rc=iter.next();
      end; 

   if last then miss.output(dataset:'keep');
   run;

proc sql noprint;
     select name into :mv_mc separated by ',' from keep;
quit;
%put Note: Columns that will be discarded are &amp;amp;mv_mc;
proc sql noprint;
alter table have drop &amp;amp;mv_mc.;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 26 Sep 2018 17:56:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499205#M132788</guid>
      <dc:creator>himalayan</dc:creator>
      <dc:date>2018-09-26T17:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: Drop variables contain specific string or missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499208#M132790</link>
      <description>&lt;P&gt;didn't work.. can you revisit the steps? processing time reduced from 16 mins to 4 mins but output not listed the columns that has only string ?&lt;/P&gt;</description>
      <pubDate>Wed, 26 Sep 2018 18:19:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499208#M132790</guid>
      <dc:creator>saivenkat</dc:creator>
      <dc:date>2018-09-26T18:19:10Z</dc:date>
    </item>
    <item>
      <title>Re: Drop variables contain specific string or missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499210#M132791</link>
      <description>&lt;P&gt;The solution you got checks only for&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token string"&gt;'?'&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and not both your conditions. As far as the hashing goes, yours and the responders are both &lt;STRONG&gt;linear&lt;/STRONG&gt;. However the iterator time makes the difference in responders case as opposed to yours&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Sep 2018 18:25:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499210#M132791</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-09-26T18:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: Drop variables contain specific string or missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499212#M132793</link>
      <description>&lt;P&gt;should get rid of the variable if it has only missing values or specific string like '?' across the table&lt;/P&gt;</description>
      <pubDate>Wed, 26 Sep 2018 18:27:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499212#M132793</guid>
      <dc:creator>saivenkat</dc:creator>
      <dc:date>2018-09-26T18:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: Drop variables contain specific string or missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499213#M132794</link>
      <description>&lt;P&gt;Which part specifically doesn't work. Could you run the example okay?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;  &lt;SPAN class="token keyword"&gt;if&lt;/SPAN&gt; _a&lt;SPAN class="token punctuation"&gt;[&lt;/SPAN&gt;idx&lt;SPAN class="token punctuation"&gt;]&lt;/SPAN&gt; &lt;SPAN class="token operator"&gt;eq&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;'?'&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;then&lt;/SPAN&gt; do&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;You can change the line above to whatever your drop criteria is&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Sep 2018 18:27:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499213#M132794</guid>
      <dc:creator>himalayan</dc:creator>
      <dc:date>2018-09-26T18:27:46Z</dc:date>
    </item>
    <item>
      <title>Re: Drop variables contain specific string or missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499230#M132799</link>
      <description>&lt;P&gt;Here is my stab at it, the same that i said earlier&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
/*Test data, took it from himalayan as I am lazy*/
data have;
   array c[6000] $1 _a1-_a6000;
   do _n_=1 to 10000;
      do i=1 to dim(c);
         c[i]=ifC(ranuni(123)&amp;gt;.99 and i&amp;gt;3,'?','x');;
         end;
      output;
      end;
   run;

data _null_;
if 0 then set have;
array _a{*} $ _character_;
call symputx('n',dim(_a));
stop;
run;

/* The process */
data _null_;
set have end=lr;
array _a{*} $ _character_;
array __a(&amp;amp;n) $32 _temporary_;
retain  __a;
if _n_=1 then
do _iorc_=1 to dim( _a);
__a(_iorc_)=vname(_a(_iorc_));
end;
do until(k = 0);
k=whichc('?', of _a(*));
if k=0 then leave;
call missing(__a(k),_a(k));
end;
if lr then call symputx('keep',catx(' ',of __a(*)));
run;
/*Here is your drop list*/
%put keep &amp;amp;keep;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 26 Sep 2018 20:06:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499230#M132799</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-09-26T20:06:55Z</dc:date>
    </item>
    <item>
      <title>Re: Drop variables contain specific string or missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499243#M132808</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/* The process with &lt;STRONG&gt;linear search&lt;/STRONG&gt; seems to be &lt;STRONG&gt;not&lt;/STRONG&gt; bad after all and &lt;STRONG&gt;very easy&lt;/STRONG&gt;*/&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*Test data, took it from himalayan as I am lazy*/
data have;
   array c[6000] $1 _a1-_a6000;
   do _n_=1 to 10000;
      do i=1 to dim(c);
         c[i]=ifC(ranuni(123)&amp;gt;.99 and i&amp;gt;3,'?','x');;
         end;
      output;
      end;
   run;

data _null_;
if 0 then set have;
array _a{*} $ _character_;
call symputx('n',dim(_a));
stop;
run;


/* The process with linear search seems to be not bad after all*/
data _null_;
set have end=lr;
array _a{*} $ _character_;
array __a(&amp;amp;n) $32 _temporary_;
retain  __a;
if _n_=1 then
do _iorc_=1 to dim( _a);
__a(_iorc_)=vname(_a(_iorc_));
end;
do _iorc_=1 to dim( _a);
if _a(_iorc_)='?' then call missing(__a(_iorc_));
end;
if lr then call symputx('keep',catx(' ',of __a(*)));
run;

/*Here is your drop list*/
%put keep &amp;amp;keep;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Sep 2018 20:07:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499243#M132808</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-09-26T20:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: Drop variables contain specific string or missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499394#M132886</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
   set have end=last;  
   array _a{*} $ _character_;
   length name $12;
   
   if _n_ = 1 then do;
      call missing(idx, name);
      declare hash miss (ordered:"a");
      
      miss.definekey("idx");
      miss.definedata('idx','name');
      miss.definedone();

      declare hiter iter('miss');
      do idx=1 to dim(_a);
         miss.add(key:idx,data:idx,data:vname(_a[idx]));
         end;
      end; 
   rc=iter.first();
   do while (rc = 0);
      if _a[idx] ne '?' and _a[idx] ne '' then do; 
         _x=idx;
         rc=iter.next();
         miss.remove(key:_x);
         end;
      else rc=iter.next();
      end; 

   if last then miss.output(dataset:'drop');
   run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I wanted to drop the columns _a1.._a3 from the sample dataset "have".. since&amp;nbsp;the columns _a1.._a3 has got the values as "x" across the table..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;changing the line as if _a[idx] ne 'x' then do; worked fine.. and&amp;nbsp;processing time saved more than 50%.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Master piece... Thank&amp;nbsp;you very much!&lt;/P&gt;</description>
      <pubDate>Thu, 27 Sep 2018 08:37:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Drop-variables-contain-specific-string-or-missing-values/m-p/499394#M132886</guid>
      <dc:creator>saivenkat</dc:creator>
      <dc:date>2018-09-27T08:37:04Z</dc:date>
    </item>
  </channel>
</rss>

