<?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: Make a pie chart in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873903#M43238</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/416124"&gt;@Gick&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;With Excel, I just have to calculate the sales percentage and then I make a pie chart using the slice variable as legend.&lt;BR /&gt;&lt;BR /&gt;But on SAS, I'm having trouble doing that.&lt;BR /&gt;&lt;BR /&gt;Can someone help me please&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Gick&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I feel your pain. But from the other side. I learned how to code and make charts in SAS years before Excel was written. then moved to a job that used Excel for everything. I got stuck making reports and was constantly going through the same steps manual of highlighting cells and defining series and options. Which from my SAS experience I should have been able to develop the code once and then use BY processing to make many similar charts.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have not mentioned what environment you are running SAS with. It might be that you have the older SAS/Graph available. Run this code which will show all of the SAS modules you have licensed.&lt;/P&gt;
&lt;PRE&gt;Proc setinit; run;&lt;/PRE&gt;
&lt;P&gt;Then look in the Log. You should see something similar to the following: If your result includes SAS/Graph then you can use Proc GCHART with a Pie option.&lt;/P&gt;
&lt;PRE&gt;Site number:  11111111.
Expiration:   30JAN2024.
Grace Period:  45 days (ending 15MAR2024).
Warning Period: 45 days (ending 29APR2024).
System birthday:   18MAY2017.
Operating System:   WX64_WKS.
Product expiration dates:
---Base SAS Software
      30JAN2024
---SAS/STAT
      30JAN2024
---SAS/GRAPH
      30JAN2024
---SAS/Secure 168-bit
      30JAN2024
---SAS/Secure Windows
      30JAN2024
---SAS Enterprise Guide
      30JAN2024
---SAS/ACCESS Interface to PC Files
      30MAY2062
---SAS/ACCESS Interface to ODBC
      30MAY2062
---SAS Workspace Server for Local Access
      30JAN2024
---High Performance Suite
      30JAN2024
&lt;/PRE&gt;
&lt;P&gt;The way the options are arranged for SAS/Graph, which was designed for pen-based plotters originally, means you will get to learn very different options for setting appearance than the Sgplot and newer procedures.&lt;/P&gt;
&lt;P&gt;You will have to check the syntax for Proc Gchart. Check the examples in the online help.&lt;/P&gt;</description>
    <pubDate>Thu, 04 May 2023 15:24:16 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2023-05-04T15:24:16Z</dc:date>
    <item>
      <title>Make a pie chart</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873774#M43226</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Gick_0-1683180658325.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/83586i83A15342134364E1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Gick_0-1683180658325.png" alt="Gick_0-1683180658325.png" /&gt;&lt;/span&gt;&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;/* &lt;SPAN&gt;Creating the table&lt;/SPAN&gt; */
data piechart;
  input slice $ Vente Age;
  datalines;
  A 35 12
  B 10 2
  C 22 22
  D 40 67
  ;
run;

/*&lt;SPAN&gt;Creating the pie chart&lt;/SPAN&gt; */
proc sgplot data=piechart;
  pie slice=Age ;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Hello,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;I want to make a pie chart (in percentage).&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Each sector takes the value of the Vente so that their sum can make 100%.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;I tried this code but it doesn't work.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Here is a picture of what I want.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Can someone help me please.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Gick.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2023 06:13:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873774#M43226</guid>
      <dc:creator>Gick</dc:creator>
      <dc:date>2023-05-04T06:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: Make a pie chart</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873777#M43227</link>
      <description>&lt;P&gt;If you check the documentation for SGPLOT, such as here: &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/grstatproc/p1x0rnjgnvfw20n1scpxlolgjeok.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/grstatproc/p1x0rnjgnvfw20n1scpxlolgjeok.htm&lt;/A&gt; you will find that there is NO "pie" plot.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Proc SGPie makes pie-charts: &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/grstatproc/n11xqf2g2rxnmbn1pgk4rbl5vz80.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/grstatproc/n11xqf2g2rxnmbn1pgk4rbl5vz80.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you &lt;STRONG&gt;may&lt;/STRONG&gt; want&lt;/P&gt;
&lt;PRE&gt;proc sgpie data=piechart;
  pie Age / response= age datalabelloc=inside;
run;&lt;/PRE&gt;
&lt;P&gt;Doesn't work is awful vague.&lt;BR /&gt;&lt;BR /&gt;Are there errors in the log?: Post the code and log in a code box opened with the "&amp;lt;/&amp;gt;" to maintain formatting of error messages.&lt;BR /&gt;&lt;BR /&gt;No output? Post any log in a code box.&lt;BR /&gt;&lt;BR /&gt;Unexpected output? Provide input data in the form of data step code pasted into a code box, the actual results and the expected results. Instructions here: &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt; will show how to turn an existing SAS data set into data step code that can be pasted into a forum code box using the "&amp;lt;/&amp;gt;" icon or attached as text to show exactly what you have and that we can test code against.&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2023 04:19:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873777#M43227</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-05-04T04:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: Make a pie chart</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873778#M43228</link>
      <description>No output result.&lt;BR /&gt;&lt;BR /&gt;I have this error message in the log. "ERROR: Procedure SGPIE not found."&lt;BR /&gt;&lt;BR /&gt;Why this problem?&lt;BR /&gt;&lt;BR /&gt;Can someone help me please.&lt;BR /&gt;Gick</description>
      <pubDate>Thu, 04 May 2023 04:30:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873778#M43228</guid>
      <dc:creator>Gick</dc:creator>
      <dc:date>2023-05-04T04:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: Make a pie chart</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873779#M43229</link>
      <description>&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatproc/n11xqf2g2rxnmbn1pgk4rbl5vz80.htm" target="_blank" rel="noopener"&gt;SGPIE&lt;/A&gt; is only available in SAS 9.4M6 or later. Run this to confirm your SAS version and maintenance level:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc product_status;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;For earlier versions &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/graphref/p13h0w5vhbfvern1a23b0f3lvfyh.htm" target="_blank" rel="noopener"&gt;PROC GCHART with the PIE statement&lt;/A&gt; should work if you have SAS/GRAPH.&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2023 04:49:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873779#M43229</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2023-05-04T04:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: Make a pie chart</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873780#M43230</link>
      <description>Or try this macro of PIE.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2012/03/26/let-them-eat-pie/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2012/03/26/let-them-eat-pie/&lt;/A&gt;</description>
      <pubDate>Thu, 04 May 2023 04:54:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873780#M43230</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-05-04T04:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: Make a pie chart</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873783#M43231</link>
      <description>I don't have SAS version 9.4M6.&lt;BR /&gt;&lt;BR /&gt;Here is the log:&lt;BR /&gt;For Logiciel Base SAS ...&lt;BR /&gt;   Custom version information: 9.4_M3&lt;BR /&gt;   Image version information: 9.04.01M3P062415&lt;BR /&gt;For SAS/STAT ...&lt;BR /&gt;   Custom version information: 14.1&lt;BR /&gt;For SAS/GRAPH ...&lt;BR /&gt;   Custom version information: 9.4_M3&lt;BR /&gt;For SAS/ETS ...&lt;BR /&gt;   Custom version information: 14.1&lt;BR /&gt;For SAS/AF ...&lt;BR /&gt;   Custom version information: 9.4_M3&lt;BR /&gt;For SAS/IML ...&lt;BR /&gt;   Custom version information: 14.1&lt;BR /&gt;For SAS/CONNECT ...&lt;BR /&gt;   Custom version information: 9.4_M3&lt;BR /&gt;For High Performance Suite ...&lt;BR /&gt;   Custom version information: 2.2_M4&lt;BR /&gt;For SAS/ACCESS Interface to PC Files ...&lt;BR /&gt;   Custom version information: 9.4_M3&lt;BR /&gt;For SAS/ACCESS Interface to ODBC ...&lt;BR /&gt;   Custom version information: 9.4_M3</description>
      <pubDate>Thu, 04 May 2023 04:56:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873783#M43231</guid>
      <dc:creator>Gick</dc:creator>
      <dc:date>2023-05-04T04:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: Make a pie chart</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873791#M43232</link>
      <description>&lt;P&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Here we deviate a little from what I am looking for.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;The idea is to take into account information from the Age variable and assign it to each slice.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;This code just gives me the pie chart of the variable slice.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;THANKS.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;I always try to meet my initial objective.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="jCAhz ChMk0b"&gt;&lt;SPAN class="ryNqvb"&gt;Gick&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2023 05:10:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873791#M43232</guid>
      <dc:creator>Gick</dc:creator>
      <dc:date>2023-05-04T05:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: Make a pie chart</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873792#M43233</link>
      <description>How to take into account the values of the age?&lt;BR /&gt;With a single slice variable, I have the pie chart fine. This graph is represented in relation to the distribution of slice whereas I want it to take into account the values of the age.&lt;BR /&gt;&lt;BR /&gt;Does anyone have any idea how we can get back to my concern (original question)&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Gick</description>
      <pubDate>Thu, 04 May 2023 05:21:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873792#M43233</guid>
      <dc:creator>Gick</dc:creator>
      <dc:date>2023-05-04T05:21:50Z</dc:date>
    </item>
    <item>
      <title>Re: Make a pie chart</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873793#M43234</link>
      <description>Why not make a new dataset and using the macro I suggested?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;data have;&lt;BR /&gt; set piechart;&lt;BR /&gt; do i=1 to age;&lt;BR /&gt;   output;&lt;BR /&gt; end;&lt;BR /&gt;run;</description>
      <pubDate>Thu, 04 May 2023 05:27:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873793#M43234</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-05-04T05:27:21Z</dc:date>
    </item>
    <item>
      <title>Re: Make a pie chart</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873794#M43235</link>
      <description>Hello,&lt;BR /&gt;No, it doesn't. With the proposed code, the loop i goes from 1 to age. It is heavy.&lt;BR /&gt;You should know that the variable age has modalities of 20, 30, 10, etc.&lt;BR /&gt;&lt;BR /&gt;If I had SAS version 9.4M6, the proc sgpie should resume to my concern I think.&lt;BR /&gt;&lt;BR /&gt;I'm always open to suggestions.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Gick</description>
      <pubDate>Thu, 04 May 2023 05:38:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873794#M43235</guid>
      <dc:creator>Gick</dc:creator>
      <dc:date>2023-05-04T05:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: Make a pie chart</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873802#M43236</link>
      <description>With Excel, I just have to calculate the sales percentage and then I make a pie chart using the slice variable as legend.&lt;BR /&gt;&lt;BR /&gt;But on SAS, I'm having trouble doing that.&lt;BR /&gt;&lt;BR /&gt;Can someone help me please&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Gick</description>
      <pubDate>Thu, 04 May 2023 06:18:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873802#M43236</guid>
      <dc:creator>Gick</dc:creator>
      <dc:date>2023-05-04T06:18:36Z</dc:date>
    </item>
    <item>
      <title>Re: Make a pie chart</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873903#M43238</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/416124"&gt;@Gick&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;With Excel, I just have to calculate the sales percentage and then I make a pie chart using the slice variable as legend.&lt;BR /&gt;&lt;BR /&gt;But on SAS, I'm having trouble doing that.&lt;BR /&gt;&lt;BR /&gt;Can someone help me please&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Gick&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I feel your pain. But from the other side. I learned how to code and make charts in SAS years before Excel was written. then moved to a job that used Excel for everything. I got stuck making reports and was constantly going through the same steps manual of highlighting cells and defining series and options. Which from my SAS experience I should have been able to develop the code once and then use BY processing to make many similar charts.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have not mentioned what environment you are running SAS with. It might be that you have the older SAS/Graph available. Run this code which will show all of the SAS modules you have licensed.&lt;/P&gt;
&lt;PRE&gt;Proc setinit; run;&lt;/PRE&gt;
&lt;P&gt;Then look in the Log. You should see something similar to the following: If your result includes SAS/Graph then you can use Proc GCHART with a Pie option.&lt;/P&gt;
&lt;PRE&gt;Site number:  11111111.
Expiration:   30JAN2024.
Grace Period:  45 days (ending 15MAR2024).
Warning Period: 45 days (ending 29APR2024).
System birthday:   18MAY2017.
Operating System:   WX64_WKS.
Product expiration dates:
---Base SAS Software
      30JAN2024
---SAS/STAT
      30JAN2024
---SAS/GRAPH
      30JAN2024
---SAS/Secure 168-bit
      30JAN2024
---SAS/Secure Windows
      30JAN2024
---SAS Enterprise Guide
      30JAN2024
---SAS/ACCESS Interface to PC Files
      30MAY2062
---SAS/ACCESS Interface to ODBC
      30MAY2062
---SAS Workspace Server for Local Access
      30JAN2024
---High Performance Suite
      30JAN2024
&lt;/PRE&gt;
&lt;P&gt;The way the options are arranged for SAS/Graph, which was designed for pen-based plotters originally, means you will get to learn very different options for setting appearance than the Sgplot and newer procedures.&lt;/P&gt;
&lt;P&gt;You will have to check the syntax for Proc Gchart. Check the examples in the online help.&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2023 15:24:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/873903#M43238</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-05-04T15:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: Make a pie chart</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/874036#M43249</link>
      <description>&lt;P&gt;Follow the link I provided in my first post to PROC GCHART and the PIE statement.&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2023 01:37:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Make-a-pie-chart/m-p/874036#M43249</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2023-05-05T01:37:03Z</dc:date>
    </item>
  </channel>
</rss>

