<?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: What does this code do? What is purpose of data _null_;? Can we this converted into Proc SQL? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739677#M230900</link>
    <description>&lt;P&gt;The error tells you:&amp;nbsp;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;ERROR: There were 1 unclosed %DO statements. The macro MYLIST will not be compiled.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;You have to add a macro&amp;nbsp;&lt;FONT color="#000080"&gt;&lt;STRONG&gt;%end;&lt;/STRONG&gt;&lt;/FONT&gt; statement at the highlighted location below&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Patrick_0-1620343305861.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/59119i40B9BF4B89C47FFD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Patrick_0-1620343305861.png" alt="Patrick_0-1620343305861.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Even if this macro becomes syntactically correct it doesn't look to me like doing much useful things but it certainly does unnecessary and wasteful things.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is the purpose of this macro? What does it get used for?&lt;/P&gt;</description>
    <pubDate>Thu, 06 May 2021 23:26:54 GMT</pubDate>
    <dc:creator>Patrick</dc:creator>
    <dc:date>2021-05-06T23:26:54Z</dc:date>
    <item>
      <title>What does this code do? What is purpose of data _null_;? Can we this converted into Proc SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739392#M230770</link>
      <description>&lt;PRE&gt;%macro Mylist();
*Create Loop;

%let totalofRecords =0;

Data mydata;
set readfromMyolddata nobs=nobs;
Run;

data _null_ ;
set  mydata  nobs=nobs;
call symput('totalofRecords', compress(nobs));
put nobs;
stop;
run;

 %do i = 1 %to &amp;amp;totalofRecords.;

data _null_;
set mydata ;
if _n_ = &amp;amp;i;
call symput ('abc_file', compress (abc_file));
run;

%mend;&lt;/PRE&gt;
&lt;P&gt;Blue Blue&lt;/P&gt;</description>
      <pubDate>Thu, 06 May 2021 05:17:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739392#M230770</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2021-05-06T05:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: What does this code do? What is purpose of data _null_;? Can we this converted into Proc SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739397#M230771</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/202329"&gt;@GN0001&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;PRE&gt;%macro Mylist();
*Create Loop;

%let totalofRecords =0;

Data mydata;
set readfromMyolddata nobs=nobs;
Run;

data _null_ ;
set  mydata  nobs=nobs;
call symput('totalofRecords', compress(nobs));
put nobs;
stop;
run;

 %do i = 1 %to &amp;amp;totalofRecords.;

data _null_;
set mydata ;
if _n_ = &amp;amp;i;
call symput ('abc_file', compress (abc_file));
run;

%mend;&lt;/PRE&gt;
&lt;P&gt;Blue Blue&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;As posted, this code does nothing except throwing a syntax ERROR. Read the log (Maxim 2), and fix the obvious problem first.&lt;/P&gt;
&lt;P&gt;Consult the documentation (Maxim 1) of the&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/lestmtsref/n1kh25to5o0wmvn1o4n4hsl3yyww.htm" target="_blank" rel="noopener"&gt;DATA Statement&lt;/A&gt;&amp;nbsp;to see what _NULL_ does.&lt;/P&gt;</description>
      <pubDate>Thu, 06 May 2021 05:37:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739397#M230771</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-05-06T05:37:32Z</dc:date>
    </item>
    <item>
      <title>Re: What does this code do? What is purpose of data _null_;? Can we this converted into Proc SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739568#M230849</link>
      <description>Hello,&lt;BR /&gt;Thanks for the response.&lt;BR /&gt;I can't see the obvious problem.&lt;BR /&gt;Documentations are very convoluted most of the time and it is hard to understand.&lt;BR /&gt;Respectfully,&lt;BR /&gt;Blue Blue</description>
      <pubDate>Thu, 06 May 2021 17:07:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739568#M230849</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2021-05-06T17:07:10Z</dc:date>
    </item>
    <item>
      <title>Re: What does this code do? What is purpose of data _null_;? Can we this converted into Proc SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739578#M230855</link>
      <description>&lt;P&gt;Post the logs, and I will show you the problem and the reason.&lt;/P&gt;
&lt;P&gt;The documentation has to be what it is because the software is extremely powerful. You need to start working with it, as it is the number one tool for success with SAS. 90% of my posts here consist of reading the doc for things I don't use regularly in my day-to-day work.&lt;/P&gt;</description>
      <pubDate>Thu, 06 May 2021 17:29:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739578#M230855</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-05-06T17:29:39Z</dc:date>
    </item>
    <item>
      <title>Re: What does this code do? What is purpose of data _null_;? Can we this converted into Proc SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739670#M230898</link>
      <description>This is my log:&lt;BR /&gt; 1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt; 72         &lt;BR /&gt; 73         %macro Mylist();&lt;BR /&gt; 74         *Create Loop;&lt;BR /&gt; 75         &lt;BR /&gt; 76         %let totalofRecords =0;&lt;BR /&gt; 77         &lt;BR /&gt; 78         Data mydata;&lt;BR /&gt; 79         set readfromMyolddata nobs=nobs;&lt;BR /&gt; 80         Run;&lt;BR /&gt; 81         &lt;BR /&gt; 82         data _null_ ;&lt;BR /&gt; 83         set  mydata  nobs=nobs;&lt;BR /&gt; 84         call symput('totalofRecords', compress(nobs));&lt;BR /&gt; 85         put nobs;&lt;BR /&gt; 86         stop;&lt;BR /&gt; 87         run;&lt;BR /&gt; 88         &lt;BR /&gt; 89          %do i = 1 %to &amp;amp;totalofRecords.;&lt;BR /&gt; 90         &lt;BR /&gt; 91         data _null_;&lt;BR /&gt; 92         set mydata ;&lt;BR /&gt; 93         if _n_ = &amp;amp;i;&lt;BR /&gt; 94         call symput ('abc_file', compress (abc_file));&lt;BR /&gt; 95         run;&lt;BR /&gt; 96         &lt;BR /&gt; 97         %mend;&lt;BR /&gt; ERROR: There were 1 unclosed %DO statements.  The macro MYLIST will not be compiled.&lt;BR /&gt; ERROR: A dummy macro will be compiled.&lt;BR /&gt; 98   &lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Blue Blue</description>
      <pubDate>Thu, 06 May 2021 22:41:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739670#M230898</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2021-05-06T22:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: What does this code do? What is purpose of data _null_;? Can we this converted into Proc SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739677#M230900</link>
      <description>&lt;P&gt;The error tells you:&amp;nbsp;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;ERROR: There were 1 unclosed %DO statements. The macro MYLIST will not be compiled.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;You have to add a macro&amp;nbsp;&lt;FONT color="#000080"&gt;&lt;STRONG&gt;%end;&lt;/STRONG&gt;&lt;/FONT&gt; statement at the highlighted location below&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Patrick_0-1620343305861.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/59119i40B9BF4B89C47FFD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Patrick_0-1620343305861.png" alt="Patrick_0-1620343305861.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Even if this macro becomes syntactically correct it doesn't look to me like doing much useful things but it certainly does unnecessary and wasteful things.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is the purpose of this macro? What does it get used for?&lt;/P&gt;</description>
      <pubDate>Thu, 06 May 2021 23:26:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739677#M230900</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2021-05-06T23:26:54Z</dc:date>
    </item>
    <item>
      <title>Re: What does this code do? What is purpose of data _null_;? Can we this converted into Proc SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739679#M230902</link>
      <description>1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt; 72         &lt;BR /&gt; 73         %macro Mylist();&lt;BR /&gt; 74         *Create Loop;&lt;BR /&gt; 75         &lt;BR /&gt; 76         %let totalofRecords =0;&lt;BR /&gt; 77         &lt;BR /&gt; 78         Data mydata;&lt;BR /&gt; 79         set readfromMyolddata nobs=nobs;&lt;BR /&gt; 80         Run;&lt;BR /&gt; 81         &lt;BR /&gt; 82         data _null_ ;&lt;BR /&gt; 83         set  mydata  nobs=nobs;&lt;BR /&gt; 84         call symput('totalofRecords', compress(nobs));&lt;BR /&gt; 85         put nobs;&lt;BR /&gt; 86         stop;&lt;BR /&gt; 87         run;&lt;BR /&gt; 88         &lt;BR /&gt; 89          %do;&lt;BR /&gt; 90          %i = 1 %to &amp;amp;totalofRecords.;&lt;BR /&gt; ERROR: Improper use of macro reserved word TO.&lt;BR /&gt; 91         &lt;BR /&gt; 92         data _null_;&lt;BR /&gt; 93         set mydata ;&lt;BR /&gt; 94         if _n_ = &amp;amp;i;&lt;BR /&gt; 95         call symput ('abc_file', compress (abc_file));&lt;BR /&gt; 96         run;&lt;BR /&gt; 97         end;&lt;BR /&gt; 98         %mend;&lt;BR /&gt; ERROR: There were 1 unclosed %DO statements.  The macro MYLIST will not be compiled.&lt;BR /&gt; ERROR: A dummy macro will be compiled.&lt;BR /&gt; 99         &lt;BR /&gt; 100        ;&lt;BR /&gt; 101        &lt;BR /&gt; 102        OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt; 114     &lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;blue blue;</description>
      <pubDate>Thu, 06 May 2021 23:30:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739679#M230902</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2021-05-06T23:30:18Z</dc:date>
    </item>
    <item>
      <title>Re: What does this code do? What is purpose of data _null_;? Can we this converted into Proc SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739680#M230903</link>
      <description>That is why I asked what it does.&lt;BR /&gt;Thanks,&lt;BR /&gt;Blue Blue</description>
      <pubDate>Thu, 06 May 2021 23:31:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739680#M230903</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2021-05-06T23:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: What does this code do? What is purpose of data _null_;? Can we this converted into Proc SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739682#M230904</link>
      <description>&lt;P&gt;Now you made your code even worse.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. remove the semicolon after the %do&lt;/P&gt;
&lt;P&gt;2. the end is on macro level and requires a %. It needs to be &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;%&lt;/FONT&gt;end;&lt;/STRONG&gt;&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="Patrick_0-1620343933232.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/59121i4C4A0EFE793E5C01/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Patrick_0-1620343933232.png" alt="Patrick_0-1620343933232.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 May 2021 23:33:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739682#M230904</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2021-05-06T23:33:56Z</dc:date>
    </item>
    <item>
      <title>Re: What does this code do? What is purpose of data _null_;? Can we this converted into Proc SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739706#M230915</link>
      <description>&lt;P&gt;So what do you think this message:&lt;/P&gt;
&lt;PRE&gt;ERROR: There were 1 unclosed %DO statements.&lt;/PRE&gt;
&lt;P&gt;tries to tell you?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hint: study the documentation of the &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/mcrolref/p0ri72c3ud2fdtn1qzs2q9vvdiwk.htm" target="_blank" rel="noopener"&gt;%DO Statement&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 07 May 2021 04:49:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739706#M230915</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-05-07T04:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: What does this code do? What is purpose of data _null_;? Can we this converted into Proc SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739709#M230916</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/202329"&gt;@GN0001&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;That is why I asked what it does.&lt;BR /&gt;Thanks,&lt;BR /&gt;Blue Blue&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Sorry but the answer to such a generic question must be RTM.&lt;/P&gt;
&lt;P&gt;"Explain me everything" starting with "how does SAS work" is may be a bit too much for this forum here.&lt;/P&gt;</description>
      <pubDate>Fri, 07 May 2021 08:00:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739709#M230916</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2021-05-07T08:00:29Z</dc:date>
    </item>
    <item>
      <title>Re: What does this code do? What is purpose of data _null_;? Can we this converted into Proc SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739809#M230961</link>
      <description>&lt;P&gt;%end? Or %mend?&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;blue blue&lt;/P&gt;</description>
      <pubDate>Fri, 07 May 2021 15:47:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739809#M230961</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2021-05-07T15:47:24Z</dc:date>
    </item>
    <item>
      <title>Re: What does this code do? What is purpose of data _null_;? Can we this converted into Proc SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739838#M230984</link>
      <description>&lt;P&gt;The&amp;nbsp;&lt;EM&gt;first&lt;/EM&gt; example in the documentation I linked has a complete example of a %DO loop, use it as a blueprint to avoid the simple mistakes.&lt;/P&gt;</description>
      <pubDate>Fri, 07 May 2021 16:43:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739838#M230984</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-05-07T16:43:36Z</dc:date>
    </item>
    <item>
      <title>Re: What does this code do? What is purpose of data _null_;? Can we this converted into Proc SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739923#M231023</link>
      <description>Hello KurtBremser,&lt;BR /&gt;I have no idea where you are referring to.&lt;BR /&gt;On documentation, I can see maxims and that's about it.&lt;BR /&gt;One thing that is interesting, on my phone, I can see links to topics that I am excited for. I can't see it on my computer.&lt;BR /&gt;Thanks for all,&lt;BR /&gt;Blue Blue</description>
      <pubDate>Fri, 07 May 2021 23:39:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739923#M231023</guid>
      <dc:creator>GN0001</dc:creator>
      <dc:date>2021-05-07T23:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: What does this code do? What is purpose of data _null_;? Can we this converted into Proc SQL?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739941#M231035</link>
      <description>&lt;P&gt;I believe &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt; was referring to this documentation link from his earlier post, not the link to his maxims list.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hint: study the documentation of the &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/mcrolref/p0ri72c3ud2fdtn1qzs2q9vvdiwk.htm" target="_blank" rel="noopener nofollow noreferrer"&gt;%DO Statement&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I suggest you study this thoroughly to understand how macro DO loops work. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 08 May 2021 02:48:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-does-this-code-do-What-is-purpose-of-data-null-Can-we-this/m-p/739941#M231035</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-05-08T02:48:38Z</dc:date>
    </item>
  </channel>
</rss>

