<?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: Bug In SAS/Connect in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Bug-In-SAS-Connect/m-p/200475#M50040</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is not a bug, you have not programmed it correctly.&amp;nbsp; Why are you even using the call execute's?&amp;nbsp; That really only complicates things unnecessarily.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rather than walking through how to fix this example.&amp;nbsp; If you care to share something closer to the situation you are actually dealing with (the SQL you mention...).&amp;nbsp; It would be easier to help, I feel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Jun 2015 13:40:14 GMT</pubDate>
    <dc:creator>FriedEgg</dc:creator>
    <dc:date>2015-06-05T13:40:14Z</dc:date>
    <item>
      <title>Bug In SAS/Connect</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Bug-In-SAS-Connect/m-p/200473#M50038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="text-align: left;"&gt;This bug exists in both 9.4 and 9.2. Below are two tests.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you run the tests and search for "len=2" or "len=1" in the log, you will find the following three outputs. The last one comes from RSubmit and is wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="BORDER-BOTTOM: #000000 1px solid; BORDER-LEFT: #000000 1px solid; WIDTH: 100%; BORDER-TOP: #000000 1px solid; BORDER-RIGHT: #000000 1px solid;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="TEXT-ALIGN: center;"&gt;Test 1&lt;/TH&gt;&lt;TH style="TEXT-ALIGN: center;"&gt;Test 2&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="TEXT-ALIGN: left; PADDING-BOTTOM: 2px; PADDING-LEFT: 2px; PADDING-RIGHT: 2px; PADDING-TOP: 2px;"&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;len=2001&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;len=2001&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;len=2002&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="TEXT-ALIGN: left; PADDING-BOTTOM: 2px; PADDING-LEFT: 2px; PADDING-RIGHT: 2px; PADDING-TOP: 2px;"&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;len=1003&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;len=1003&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;len=15&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This bug corrupts code containing spaces. I found this bug because an extra space is inserted into a column name, causing an SQL query to fail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="BORDER-BOTTOM: #000000 1px solid; BORDER-LEFT: #000000 1px solid; WIDTH: 100%; BORDER-TOP: #000000 1px solid; BORDER-RIGHT: #000000 1px solid;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="TEXT-ALIGN: center;"&gt;Test 1&lt;/TH&gt;&lt;TH style="TEXT-ALIGN: center;"&gt;Test 2&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;%let k=1000;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;%macro foo;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;data _null_;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;len = length("%sysfunc(repeat(x%bquote( ),&amp;amp;k.))");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;put len=;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;run;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;%mend;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;options noquotelenmax;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;%foo;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;data _null_;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;call execute('%foo');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;data _null_;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;call execute('signon t sascmd="!sascmdv";');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;call execute('rsubmit t;');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;call execute('options noquotelenmax;');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;call execute('%foo');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;call execute('endrsubmit;');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;call execute('signoff t;');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;%let k=1000;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;%macro foo;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;data _null_;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;len = length("x%sysfunc(repeat(%bquote( ),&amp;amp;k.))x");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;put len=;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;run;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;%mend;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;options noquotelenmax;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;%foo;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;data _null_;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;call execute('%foo');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;data _null_;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;call execute('signon t sascmd="!sascmdv";');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;call execute('rsubmit t;');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;call execute('options noquotelenmax;');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;call execute('%foo');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;call execute('endrsubmit;');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;call execute('signoff t;');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jun 2015 03:41:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Bug-In-SAS-Connect/m-p/200473#M50038</guid>
      <dc:creator>GiovannaEdmonds</dc:creator>
      <dc:date>2015-06-05T03:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: Bug In SAS/Connect</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Bug-In-SAS-Connect/m-p/200474#M50039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, have you reported this to SAS tech support?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jun 2015 12:29:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Bug-In-SAS-Connect/m-p/200474#M50039</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2015-06-05T12:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: Bug In SAS/Connect</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Bug-In-SAS-Connect/m-p/200475#M50040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is not a bug, you have not programmed it correctly.&amp;nbsp; Why are you even using the call execute's?&amp;nbsp; That really only complicates things unnecessarily.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rather than walking through how to fix this example.&amp;nbsp; If you care to share something closer to the situation you are actually dealing with (the SQL you mention...).&amp;nbsp; It would be easier to help, I feel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jun 2015 13:40:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Bug-In-SAS-Connect/m-p/200475#M50040</guid>
      <dc:creator>FriedEgg</dc:creator>
      <dc:date>2015-06-05T13:40:14Z</dc:date>
    </item>
    <item>
      <title>Re: Bug In SAS/Connect</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Bug-In-SAS-Connect/m-p/200476#M50041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your reply. There are good reasons for using call execute, and the workarounds for this bug make compromises on those reasons. Imagine that the macro is thousands of lines long, or is user-supplied at run time. And then imagine a choreography of several such macros with potentially hundreds of RSubmits (both sequential and parallel). The value of call execute is clear. The workaround to this bug involves %include or sasautos. The drawbacks of saving the macro externally are inconvenience to the user and not being to use the version control inside enterprise guide. Furthermore, the macro is stored on the server, instead of beig encapsulating within a single EG project file, which are often stored on separate filesystems.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Jun 2015 05:40:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Bug-In-SAS-Connect/m-p/200476#M50041</guid>
      <dc:creator>GiovannaEdmonds</dc:creator>
      <dc:date>2015-06-06T05:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: Bug In SAS/Connect</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Bug-In-SAS-Connect/m-p/200477#M50042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You reasoning for using the CALL EXECUTE is to have you macro compile locally and transfer the generated SAS code/text to the remote server for execution.&amp;nbsp; I understand why you feel this should be treated as a bug, but, I also feel that your approach is mostly what is flawed.&amp;nbsp; As Linus said, the appropriate place to report bugs is with SAS Tech Support.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your specific example, rewriting the FOO macro to something like the following resolves all your issues:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'courier new', courier; background-color: #ffffff;"&gt;%macro foo;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'courier new', courier; background-color: #ffffff;"&gt;data _null_;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'courier new', courier; background-color: #ffffff;"&gt;foo = cat('x', repeat(' ', &amp;amp;k.), 'x');&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'courier new', courier; background-color: #ffffff;"&gt;len = length(foo);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'courier new', courier; background-color: #ffffff;"&gt;put len=;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'courier new', courier; background-color: #ffffff;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'courier new', courier; background-color: #ffffff;"&gt;%mend;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'courier new', courier; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;My recommendation would be to transfer the macro (even when compile in work on the client session) to the remote session and have it execute there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let k=1000;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%macro foo(session, k);&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt;len = length("x%sysfunc(repeat(%bquote( ),&amp;amp;k.))x");&lt;/P&gt;&lt;P&gt;put "&amp;gt;&amp;gt;&amp;gt;&amp;amp;session. " len=;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;%mend;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* transfer macro FOO to remote, for non-shared file systems using PROC UPLOAD could be used instead of inheritlib option, this is example for MP-CONNECT style rsubmit */&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;options dlcreatedir;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;libname tmp "%sysfunc(pathname(work,l))/mstore";&lt;/P&gt;&lt;P&gt;proc catalog c=work.sasmacr et=macro;&lt;/P&gt;&lt;P&gt;copy out=tmp.sasmacr;&lt;/P&gt;&lt;P&gt;select foo;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;options noquotelenmax;&lt;/P&gt;&lt;P&gt;%foo(local, &amp;amp;k.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;signon t sascmd='!sascmd' inheritlib=(tmp);&lt;/P&gt;&lt;P&gt;%syslput k=&amp;amp;k.;&lt;/P&gt;&lt;P&gt;rsubmit t;&lt;/P&gt;&lt;P&gt;options noquotelenmax;&lt;/P&gt;&lt;P&gt;options mstored sasmstore=tmp;&lt;/P&gt;&lt;P&gt;%foo(remote, &amp;amp;k.);&lt;/P&gt;&lt;P&gt;endrsubmit;&lt;/P&gt;&lt;P&gt;signoff t;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;data _null_;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;call execute('signon t sascmd="!sascmd" inheritlib=(tmp);&lt;SPAN style="font-size: 13.3333330154419px;"&gt;');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;call execute('&lt;/SPAN&gt;%nrstr(%syslput k=&amp;amp;k.;)&lt;SPAN style="font-size: 13.3333330154419px;"&gt;');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;call execute('&lt;/SPAN&gt;rsubmit t;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;call execute('&lt;/SPAN&gt;options noquotelenmax;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;call execute('&lt;/SPAN&gt;options mstored sasmstore=tmp;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;call execute('&lt;/SPAN&gt;%nrstr(%foo(remote, &amp;amp;k.);)&lt;SPAN style="font-size: 13.3333330154419px;"&gt;');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;call execute('&lt;/SPAN&gt;endrsubmit;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;');&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;call execute('&lt;/SPAN&gt;signoff t;');&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Jun 2015 16:34:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Bug-In-SAS-Connect/m-p/200477#M50042</guid>
      <dc:creator>FriedEgg</dc:creator>
      <dc:date>2015-06-07T16:34:09Z</dc:date>
    </item>
    <item>
      <title>Re: Bug In SAS/Connect</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Bug-In-SAS-Connect/m-p/200478#M50043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your reply. I am just posting here so people are aware of the bug. It's quite pernicious imo. call execute() is not a flawed approach. It is in fact the most elegant approach (if not for the bug described here). By elegant I mean it needs the fewest lines of code. The drawback with mstored is that “%syslput _user_;” is not available in 9.2, so more code is needed to hunt down all of the user’s macro variables. Imagine a dynamic environment where the users do whatever they want. (By "users" I really mean other programmers.) To give you a bit more background, my code is generated through a data step based on user input and a very complex logic. Each step, when generated, is inserted into a hash table (so they don't have to be generated in the same order as the actual execution). In the end of the data step, a hiter loop is used and call execute() is applied. As for %foo, I concocted it just to demonstrate the bug. I don't really need one thousand x's. If you have code that's written as state = "New York", the bug would have SAS run state = "New&amp;nbsp; York" instead (note the double spaces between New and York). No rewriting can avoid getting the wrong output in that case.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jun 2015 05:42:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Bug-In-SAS-Connect/m-p/200478#M50043</guid>
      <dc:creator>GiovannaEdmonds</dc:creator>
      <dc:date>2015-06-08T05:42:55Z</dc:date>
    </item>
  </channel>
</rss>

