<?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: Number series for past 12 months in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574748#M75408</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/213838"&gt;@new_sas_user_4&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi Everyone,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want number series for the past one year for subsetting data:&lt;/P&gt;
&lt;P&gt;Eg: If I am in July, I want to get the past 12 months data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Proc sql;&lt;/P&gt;
&lt;P&gt;create table A as select * from B where (month in (1,2,3,4,5,6) and year in (2019)) or (month in (7,8,9,10,11,12) and year in (2018));&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The month and year fields are numeric in table "B".&lt;/P&gt;
&lt;P&gt;How can this be done?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Did that code not work? As long as the from table name is a valid SAS data set and the variable names in the data a described that should work.&lt;/P&gt;</description>
    <pubDate>Thu, 18 Jul 2019 19:36:22 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2019-07-18T19:36:22Z</dc:date>
    <item>
      <title>Number series for past 12 months</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574743#M75407</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want number series for the past one year for subsetting data:&lt;/P&gt;&lt;P&gt;Eg: If I am in July, I want to get the past 12 months data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Proc sql;&lt;/P&gt;&lt;P&gt;create table A as select * from B where (month in (1,2,3,4,5,6) and year in (2019)) or (month in (7,8,9,10,11,12) and year in (2018));&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The month and year fields are numeric in table "B".&lt;/P&gt;&lt;P&gt;How can this be done?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 19:25:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574743#M75407</guid>
      <dc:creator>new_sas_user_4</dc:creator>
      <dc:date>2019-07-18T19:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Number series for past 12 months</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574748#M75408</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/213838"&gt;@new_sas_user_4&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi Everyone,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want number series for the past one year for subsetting data:&lt;/P&gt;
&lt;P&gt;Eg: If I am in July, I want to get the past 12 months data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Proc sql;&lt;/P&gt;
&lt;P&gt;create table A as select * from B where (month in (1,2,3,4,5,6) and year in (2019)) or (month in (7,8,9,10,11,12) and year in (2018));&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The month and year fields are numeric in table "B".&lt;/P&gt;
&lt;P&gt;How can this be done?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Did that code not work? As long as the from table name is a valid SAS data set and the variable names in the data a described that should work.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 19:36:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574748#M75408</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-07-18T19:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: Number series for past 12 months</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574750#M75410</link>
      <description>What is the type and format on your date variables?&lt;BR /&gt;&lt;BR /&gt;This can be done, but how depends on your data structure.</description>
      <pubDate>Thu, 18 Jul 2019 19:38:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574750#M75410</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-07-18T19:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: Number series for past 12 months</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574756#M75412</link>
      <description>&lt;P&gt;This works fine, But I want to automate it so the next month ...say August 2019 I wont have to re-write :&lt;/P&gt;&lt;P&gt;Proc sql;&lt;/P&gt;&lt;P&gt;create table A as select * from B where (month in (1,2,3,4,5,6,7) and year in (2019)) or (month in (8,9,10,11,12) and year in (2018));&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The values for month and year should be filled in automatically in the code based on the month I am in!&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 19:43:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574756#M75412</guid>
      <dc:creator>new_sas_user_4</dc:creator>
      <dc:date>2019-07-18T19:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: Number series for past 12 months</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574764#M75413</link>
      <description>&lt;P&gt;&lt;SPAN&gt;What is the type and format on your date variables?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;It's much more efficient to use INTNX or INTCK instead of manually doing these calculations each month, but to do that you need to have a SAS date. Then it becomes.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;where date between intnx('month', today(), 0, 'b') and intnx('month', today(), -12, 'b');&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;You'll probably need to tweak the elements a bit but in general that's a more robust method.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/213838"&gt;@new_sas_user_4&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;This works fine, But I want to automate it so the next month ...say August 2019 I wont have to re-write :&lt;/P&gt;
&lt;P&gt;Proc sql;&lt;/P&gt;
&lt;P&gt;create table A as select * from B where (month in (1,2,3,4,5,6,7) and year in (2019)) or (month in (8,9,10,11,12) and year in (2018));&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The values for month and year should be filled in automatically in the code based on the month I am in!&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 19:54:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574764#M75413</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-07-18T19:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: Number series for past 12 months</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574776#M75414</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;What is the type and format on your date variables?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;It's much more efficient to use INTNX or INTCK instead of manually doing these calculations each month, but to do that you need to have a SAS date. Then it becomes.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;where date between intnx('month', today(), 0, 'b') and intnx('month', today(), -12, 'b');&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;You'll probably need to tweak the elements a bit but in general that's a more robust method.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/213838"&gt;@new_sas_user_4&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;This works fine, But I want to automate it so the next month ...say August 2019 I wont have to re-write :&lt;/P&gt;
&lt;P&gt;Proc sql;&lt;/P&gt;
&lt;P&gt;create table A as select * from B where (month in (1,2,3,4,5,6,7) and year in (2019)) or (month in (8,9,10,11,12) and year in (2018));&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The values for month and year should be filled in automatically in the code based on the month I am in!&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Might want&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;where date between intnx('month', today(), 0, &lt;STRONG&gt;'e')&lt;/STRONG&gt; and intnx('month', today(), -12, 'b');&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;if the end of the current month is the goal.&lt;/P&gt;
&lt;P&gt;Date values are generally preferred instead of separate month and year fields as&amp;nbsp;a single value manipulates easily for many tasks.&lt;/P&gt;
&lt;P&gt;If you don't have a day of the month then&amp;nbsp; pick a day to assume for such purposes&amp;nbsp;and create it with&amp;nbsp;&lt;/P&gt;
&lt;P&gt;date= mdy(month,1,year) for first day of the month. Other options are available if desired but which day&amp;nbsp;needed would need to be known to modify code.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 20:19:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574776#M75414</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-07-18T20:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Number series for past 12 months</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574784#M75415</link>
      <description>where date between intnx('month', today(), -13, 'b') and intnx('month', today(), -1, 'e');&lt;BR /&gt;&lt;BR /&gt;Since it's from July 2018 to June 2019 it's likely the above.</description>
      <pubDate>Thu, 18 Jul 2019 20:27:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574784#M75415</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-07-18T20:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: Number series for past 12 months</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574805#M75416</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/213838"&gt;@new_sas_user_4&lt;/a&gt;&amp;nbsp; Follow this approach if you like,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*Since you didn't provide a sample I create a sample have with year and month variables assuming you do not have a date variable*/
data have;
do year=2015 to 2020;
do month=1 to 12;
output;
end;
end;
run;

/*Create a look up table, this logic will dynamically create the last 12 months from he current month*/
data look_up;
k=12-month(today());
do month=month(today())-1 to 1 by -1;
year=year(today());
output;
end;
do month=12 to 12-k by -1;
year=year(today())-1;
output;
end;
keep month year;
run;


/*Straight forward Look up from your have on to the look up table and output the matches*/
data want ;
if _n_=1 then do;
   dcl hash H (dataset:'look_up') ;
   h.definekey  ("month","year") ;
   h.definedone () ;
end;
set have;
if h.check()=0;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 18 Jul 2019 23:49:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574805#M75416</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-07-18T23:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: Number series for past 12 months</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574807#M75417</link>
      <description>&lt;P&gt;And if you truly understand the above,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The lookup table step&amp;nbsp; and the hash step can be combined into one. However , no biggie as you are only creating 12 records in the look up table, so may as well keep it as suggested previously&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want ;
if _n_=1 then do;
   dcl hash H () ;
   h.definekey  ("month","year") ;
   h.definedata ("month","year") ;
   h.definedone () ;
   k=12-month(today());
   do month=month(today())-1 to 1 by -1;
   year=year(today());
   h.add();
   end;
   do month=12 to 12-k by -1;
   year=year(today())-1;
   h.add();
   end;
end;
set have;
if h.check()=0;
drop k;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 18 Jul 2019 21:39:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574807#M75417</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-07-18T21:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: Number series for past 12 months</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574811#M75418</link>
      <description>&lt;P&gt;I think the solutions with intnx will work for my query...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I didnt understand this part&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/138205"&gt;@novinosrin&lt;/a&gt;&amp;nbsp;&amp;nbsp;:&lt;/P&gt;&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt; want &lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token keyword"&gt;if&lt;/SPAN&gt; _n_&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token number"&gt;1&lt;/SPAN&gt; &lt;SPAN class="token keyword"&gt;then&lt;/SPAN&gt; do&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
   dcl hash H &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;dataset:&lt;SPAN class="token string"&gt;'look_up'&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
   h&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;definekey  &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;"month"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;"year"&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
   h&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;definedone &lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 22:08:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574811#M75418</guid>
      <dc:creator>new_sas_user_4</dc:creator>
      <dc:date>2019-07-18T22:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: Number series for past 12 months</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574825#M75419</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/213838"&gt;@new_sas_user_4&lt;/a&gt;&amp;nbsp; Yes if you &lt;STRONG&gt;do&lt;/STRONG&gt; have a Date variable, you are better of using intnx. That's absolute!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The solution I gave you assumes you &lt;STRONG&gt;do &lt;U&gt;not&lt;/U&gt;&lt;/STRONG&gt; have a date variable. Also, as&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp; pointed out, you could help us to help you by providing a &lt;STRONG&gt;sample&lt;/STRONG&gt; of what you have. That would not lead to assumptions.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 23:47:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574825#M75419</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-07-18T23:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: Number series for past 12 months</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574912#M75437</link>
      <description>&lt;P&gt;The SQL equivalent of the above HASH would be&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
proc sql;
create table want as
select a.*
from have a inner join look_up b
on a. month=b.month and a.year=b.year;
quit; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Again all of my suggestions assumes you&lt;STRONG&gt; do not&lt;/STRONG&gt; have a date variable&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2019 11:45:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Number-series-for-past-12-months/m-p/574912#M75437</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-07-19T11:45:24Z</dc:date>
    </item>
  </channel>
</rss>

