<?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 Merging the data sets using macro code in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156764#M30606</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to macro code. Here is my question: have data1- data60 and I want to merge each one of them with dataB based on a common variable "ID". How can&amp;nbsp; I do that? Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 30 Jan 2014 07:18:16 GMT</pubDate>
    <dc:creator>YoYo</dc:creator>
    <dc:date>2014-01-30T07:18:16Z</dc:date>
    <item>
      <title>Merging the data sets using macro code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156764#M30606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to macro code. Here is my question: have data1- data60 and I want to merge each one of them with dataB based on a common variable "ID". How can&amp;nbsp; I do that? Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2014 07:18:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156764#M30606</guid>
      <dc:creator>YoYo</dc:creator>
      <dc:date>2014-01-30T07:18:16Z</dc:date>
    </item>
    <item>
      <title>Re: Merging the data sets using macro code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156765#M30607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;%DO&lt;/P&gt;&lt;P&gt;If you don't what do with it, I suggest that you take some kind of class, or at least try to go trough the documentation, which has some samples as well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2014 08:06:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156765#M30607</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2014-01-30T08:06:02Z</dc:date>
    </item>
    <item>
      <title>Re: Merging the data sets using macro code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156766#M30608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want a detailed answer, you will have to supply a little more information.&amp;nbsp; Are you original data sets already sorted by ID?&amp;nbsp; What names would you like to use for the final data sets, after merging?&amp;nbsp; The programming will be relatively easy once you have supplied the information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2014 14:02:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156766#M30608</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2014-01-30T14:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: Merging the data sets using macro code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156767#M30609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I find when writing a macro that it helps to do what I want normally first, then "macronize" it.&amp;nbsp; For example here to merge the first table your code is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080; background-color: #ffffff;"&gt;&lt;STRONG&gt;PROC&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN style="color: #000080; background-color: #ffffff;"&gt;&lt;STRONG&gt;SORT&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;DATA&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=dataB;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;BY&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; ID;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000080; background-color: #ffffff;"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000080; background-color: #ffffff;"&gt;&lt;STRONG&gt;PROC&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN style="color: #000080; background-color: #ffffff;"&gt;&lt;STRONG&gt;SORT&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;DATA&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=data1;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;BY&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; ID;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000080; background-color: #ffffff;"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000080; background-color: #ffffff;"&gt;&lt;STRONG&gt;DATA&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; NewData1;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;MERGE&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; Data1 dataB;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;BY&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; ID;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000080; background-color: #ffffff;"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Now all you need to do is loop through the last two steps and change the number each time using %DO as suggested above (all within %MACRO and %MEND tags).&amp;nbsp; So it would look something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080; background-color: #ffffff;"&gt;&lt;STRONG&gt;%MACRO&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; MergeData(n=&lt;/SPAN&gt;&lt;SPAN style="color: #008080; background-color: #ffffff;"&gt;&lt;STRONG&gt;60&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;)&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PROC SORT DATA=dataB; BY ID; RUN;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;%DO&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; i = &lt;/SPAN&gt;&lt;SPAN style="color: #008080; background-color: #ffffff;"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;%TO&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; &amp;amp;n;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PROC SORT DATA=data&amp;amp;i; BY ID; RUN;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATA NewData&amp;amp;i; MERGE Data&amp;amp;i dataB; BY ID; RUN;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;%END&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000080; background-color: #ffffff;"&gt;&lt;STRONG&gt;%MEND&lt;/STRONG&gt;&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could improve on the above by allowing a prefix entry for the datasets and/or an input for the table to be merged (here, dataB).&amp;nbsp; If you had only two datasets, you could call the previous macro like this:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;%&lt;/SPAN&gt;&lt;STRONG style="color: #000000; background-color: #ffffff;"&gt;&lt;EM&gt;MergeData&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;(n=&lt;/SPAN&gt;&lt;SPAN style="color: #008080; background-color: #ffffff;"&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt; &lt;/DIV&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;Have fun learning macros, they can greatly increase your efficiency!&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2014 16:08:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156767#M30609</guid>
      <dc:creator>JohnW_</dc:creator>
      <dc:date>2014-01-30T16:08:23Z</dc:date>
    </item>
    <item>
      <title>Re: Merging the data sets using macro code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156768#M30610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Astounding,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry about not providing enough info. The original data sets are not sorted yet. And for final results, they can be any name. Let's say merged1-merged60...Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H1 class="fn n" style="font-weight: normal; font-size: 22px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #f6f6f6;"&gt;&lt;/H1&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2014 20:30:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156768#M30610</guid>
      <dc:creator>YoYo</dc:creator>
      <dc:date>2014-01-30T20:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: Merging the data sets using macro code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156769#M30611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The codes look so good. I will try to see how it works. Thank you so much! Copy&amp;amp;paste always works for me when I only have less than 10 data sets... when it comes to 60... Oh, my gosh, I need macros!!!! I will try my best to learn it. Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2014 20:36:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156769#M30611</guid>
      <dc:creator>YoYo</dc:creator>
      <dc:date>2014-01-30T20:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: Merging the data sets using macro code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156770#M30612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure&lt;SPAN lang="ZH-CN" style="font-family: 宋体;"&gt;，&lt;/SPAN&gt;going trough the documentation with samples is something I want to try first. Do you have any suggestions about books or other learning materials? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2014 20:40:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156770#M30612</guid>
      <dc:creator>YoYo</dc:creator>
      <dc:date>2014-01-30T20:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: Merging the data sets using macro code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156771#M30613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess alternatively you could combine all of the DATAi sets into one (especially if they have similar columns), keep track of which is which with the IN= data set option, merge, then split them back apart.&amp;nbsp; Pick your poison!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2014 20:45:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156771#M30613</guid>
      <dc:creator>JohnW_</dc:creator>
      <dc:date>2014-01-30T20:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: Merging the data sets using macro code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156772#M30614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In that case, JohnW's macro should suit you pretty well.&amp;nbsp; I would add just one statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%macro MergeData (n=);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; proc sort data=dataB; by ID; run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;%local i;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; %do i=1 %to &amp;amp;n;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; proc sort data=data&amp;amp;i; by ID; run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; data merged&amp;amp;i; merge data&amp;amp;i dataB; by ID; run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; %end;&lt;/P&gt;&lt;P&gt;%mend MergeData;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To actually use the macro, you would add later in the same program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%MergeData (n=60)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just so you can better see what the result is, also add this statement before using the macro:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;options MPRINT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That should get you started on the right path.&amp;nbsp; One way to learn about macros would be to take the working macro and figure out how it works.&amp;nbsp; Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2014 20:56:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156772#M30614</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2014-01-30T20:56:25Z</dc:date>
    </item>
    <item>
      <title>Re: Merging the data sets using macro code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156773#M30615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;that's a good suggestion. But there are duplicated ID in data1-data60 with different values of other variables, so I guess combining data1-data60 and then merging with dataB might be problematic.&amp;nbsp; This reminds me that my dataB actually have duplicated IDs but my data1-data60 only have unique ID in each one of them. What I want is do a one-to-many match for each datai (i=1 to 60) and dataB merge. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2014 21:19:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156773#M30615</guid>
      <dc:creator>YoYo</dc:creator>
      <dc:date>2014-01-30T21:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: Merging the data sets using macro code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156774#M30616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;your code works so great! Thank you for your suggestion and surely I'll learn by playing with Macro! :smileycool:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jan 2014 07:04:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156774#M30616</guid>
      <dc:creator>YoYo</dc:creator>
      <dc:date>2014-01-31T07:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: Merging the data sets using macro code</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156775#M30617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I like the way how you &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt; "macronize" it. It is fun when you get things done in a more &lt;SPAN style="background-color: #ffffff;"&gt;efficie&lt;/SPAN&gt;nt way, thank you&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Jan 2014 07:07:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-the-data-sets-using-macro-code/m-p/156775#M30617</guid>
      <dc:creator>YoYo</dc:creator>
      <dc:date>2014-01-31T07:07:33Z</dc:date>
    </item>
  </channel>
</rss>

