<?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: Not enough memory to complete this operation in LabVIEW</title>
    <link>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982734#M1136845</link>
    <description>&lt;P&gt;STOP USING THE NETWORK PUBLISHED SHARED VARIABLE!!!&amp;nbsp; I actually deem them evil, especially in this situation where you need a Stream communication, not a Tag.&amp;nbsp; What you really should have here is a Network Stream or TCP/IP connection to stream the data from the cRIO to your PC, which then saves the data.&amp;nbsp; It would eliminate one of your loops (the Network Stream/TCP connections would act as the queue).&lt;/P&gt;</description>
    <pubDate>Tue, 29 Oct 2019 16:58:30 GMT</pubDate>
    <dc:creator>crossrulz</dc:creator>
    <dc:date>2019-10-29T16:58:30Z</dc:date>
    <item>
      <title>Not enough memory to complete this operation</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982624#M1136799</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using labview2018, I am acquiring data from a VI running on Crio 9047 and writing data on csv file on another VI running on my Computer through variable&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;acquistion (rate is 50k)is proper but when writing data in csv file, a single writing is only possible, if I try to write more number of files, ist showing error : not enough Memory to complete this Operation.&lt;/P&gt;
&lt;P&gt;sometime even my LabVIEW gets close after this error.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;my VIs are attached&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 13:03:54 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982624#M1136799</guid>
      <dc:creator>vishal231</dc:creator>
      <dc:date>2019-10-29T13:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: Not enough memory to complete this operation</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982667#M1136814</link>
      <description>&lt;P&gt;Why do you have a timeout on your dequeue in your save VI? I don't see a need for this. You can also skip the Wait in the upper loop in the save VI since the queue itself will provide the wait functionality. I would avoid writing single elements to your file. File I/O is the bottle neck. Change your processing to write data once per second but write all the data that has been queued during that time in a single write. To do this you flush the queue once a second, process the array of elements from the flush and then call a single writ e to the file. I would use a single stop button to stop your processing. I prefer to use actual messages for communications with queues so you can have an explicit stop message which would stop your consumer. Why are you calling the queue status? It servers no purpose in your code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 14:57:05 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982667#M1136814</guid>
      <dc:creator>Mark_Yedinak</dc:creator>
      <dc:date>2019-10-29T14:57:05Z</dc:date>
    </item>
    <item>
      <title>Re: Not enough memory to complete this operation</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982699#M1136827</link>
      <description>&lt;P&gt;thanks for Input but,&lt;/P&gt;
&lt;P&gt;How would i flush the Queue after 1 seconds ?&lt;/P&gt;
&lt;P&gt;I did some changes but now after every saving of 4-5files (can save data for around 30 seconds only) my LabVIEW gets closed.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 16:08:40 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982699#M1136827</guid>
      <dc:creator>vishal231</dc:creator>
      <dc:date>2019-10-29T16:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: Not enough memory to complete this operation</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982734#M1136845</link>
      <description>&lt;P&gt;STOP USING THE NETWORK PUBLISHED SHARED VARIABLE!!!&amp;nbsp; I actually deem them evil, especially in this situation where you need a Stream communication, not a Tag.&amp;nbsp; What you really should have here is a Network Stream or TCP/IP connection to stream the data from the cRIO to your PC, which then saves the data.&amp;nbsp; It would eliminate one of your loops (the Network Stream/TCP connections would act as the queue).&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 16:58:30 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982734#M1136845</guid>
      <dc:creator>crossrulz</dc:creator>
      <dc:date>2019-10-29T16:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: Not enough memory to complete this operation</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982892#M1136903</link>
      <description>&lt;P&gt;hello,&lt;/P&gt;
&lt;P&gt;actually I am new to the LabVIEW, can you please&amp;nbsp; tell how to use Network streams in this application?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2019 07:06:26 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982892#M1136903</guid>
      <dc:creator>vishal231</dc:creator>
      <dc:date>2019-10-30T07:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: Not enough memory to complete this operation</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982905#M1136908</link>
      <description>&lt;P&gt;Hello Vishal&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can find more about Network Stream in the links given below.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.ni.com/en/shop/labview/lossless-communication-with-network-streams--components--archite.html" target="_blank" rel="noopener"&gt;https://www.ni.com/en/shop/labview/lossless-communication-with-network-streams--components--archite.html&lt;/A&gt;&lt;/P&gt;
&lt;P data-unlink="true"&gt;http://www.ni.com/documentation/en/labview-comms/latest/g-prog/streaming-data-using-network-stream/&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Refer examples as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-Rahul&lt;/P&gt;
&lt;P&gt;Hit KUDOS for Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 29 Aug 2025 22:14:36 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982905#M1136908</guid>
      <dc:creator>Rahulbala</dc:creator>
      <dc:date>2025-08-29T22:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: Not enough memory to complete this operation</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982919#M1136916</link>
      <description>&lt;P&gt;hello&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I created writre and read Network streams for my application but my writer is not taking the data in acquire VI please have a look&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2019 09:35:49 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982919#M1136916</guid>
      <dc:creator>vishal231</dc:creator>
      <dc:date>2019-10-30T09:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: Not enough memory to complete this operation</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982937#M1136929</link>
      <description>&lt;P&gt;Your Write To Stream needs to be inside of your acquisition loop.&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://forums.ni.com/ni/attachments/ni/170/1136929/1/acquiree_BD.png" border="0" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2019 11:18:33 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982937#M1136929</guid>
      <dc:creator>crossrulz</dc:creator>
      <dc:date>2019-10-30T11:18:33Z</dc:date>
    </item>
    <item>
      <title>Re: Not enough memory to complete this operation</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982941#M1136932</link>
      <description>&lt;P&gt;even i did some chnages but the Network stream write loop ,it is not taking the data&amp;nbsp;&lt;/P&gt;
&lt;P&gt;please have a look in this code&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2019 11:22:15 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982941#M1136932</guid>
      <dc:creator>vishal231</dc:creator>
      <dc:date>2019-10-30T11:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: Not enough memory to complete this operation</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982950#M1136937</link>
      <description>&lt;P&gt;hello crossrulz thanks for your Reply i did the required changes as told by you&lt;/P&gt;
&lt;P&gt;but reading of sampling is not Happening .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;do the Reader has to respond ? so that the while loop will run and reading of the sampling will be done&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2019 11:54:22 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982950#M1136937</guid>
      <dc:creator>vishal231</dc:creator>
      <dc:date>2019-10-30T11:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: Not enough memory to complete this operation</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982954#M1136940</link>
      <description>&lt;P&gt;You are most likely waiting for the host to make the connection.&amp;nbsp; What I usually do for these types of applications is use a sort of State Machine on the cRIO that just manages the network connection.&amp;nbsp; It can receive data from the acquisition loop via a queue and either pass it through the Network Stream (if connection is valid) or ignore it (if connection is invalid).&amp;nbsp; This network loop can detect disconnections using errors and go back to trying to connect while still clearing out the queue.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2019 12:00:23 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3982954#M1136940</guid>
      <dc:creator>crossrulz</dc:creator>
      <dc:date>2019-10-30T12:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: Not enough memory to complete this operation</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3983011#M1136972</link>
      <description>&lt;P&gt;thanks crossrulz&amp;nbsp;&lt;/P&gt;
&lt;P&gt;but why it is not making the Connection in this case ? my IP is correct &amp;nbsp;&lt;img id="smileyindifferent" class="emoticon emoticon-smileyindifferent" src="https://ni.lithium.com/i/smilies/16x16_smiley-indifferent.gif" alt="Smiley Indifferent" title="Smiley Indifferent" /&gt;&lt;/P&gt;
&lt;P&gt;Also, where should i learn more About Queue with state machine ?&lt;/P&gt;
&lt;P&gt;do you know some examples related to my application ?&amp;nbsp;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://ni.lithium.com/i/smilies/16x16_smiley-happy.gif" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;
&lt;P&gt;can you send some examples or links realted to my application&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2019 13:55:34 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3983011#M1136972</guid>
      <dc:creator>vishal231</dc:creator>
      <dc:date>2019-10-30T13:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: Not enough memory to complete this operation</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3983017#M1136976</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://ni.lithium.com/t5/user/viewprofilepage/user-id/636228"&gt;@vishal231&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;but why it is not making the Connection in this case ? my IP is correct &amp;nbsp;&lt;IMG id="smileyindifferent" class="emoticon emoticon-smileyindifferent" src="https://ni.lithium.com/i/smilies/16x16_smiley-indifferent.gif" alt="Smiley Indifferent" title="Smiley Indifferent" /&gt;&lt;/P&gt;
&lt;P&gt;Also, where should i learn more About Queue with state machine ?&lt;/P&gt;
&lt;P&gt;do you know some examples related to my application ?&amp;nbsp;&lt;IMG id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://ni.lithium.com/i/smilies/16x16_smiley-happy.gif" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;
&lt;P&gt;can you send some examples or links realted to my application&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The connection has to be made on both sides of the Network Stream (cRIO and the host).&amp;nbsp; So I suspect you did not run your PC VI.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.ni.com/en/support/documentation/supplemental/21/producer-consumer-architecture-in-labview0.html" target="_blank" rel="noopener"&gt;Producer/Consumer&lt;/A&gt;, &lt;A href="https://www.ni.com/en/support/documentation/supplemental/16/simple-state-machine-template-documentation.html" target="_blank" rel="noopener"&gt;State Machine&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Aug 2025 22:15:13 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3983017#M1136976</guid>
      <dc:creator>crossrulz</dc:creator>
      <dc:date>2025-08-29T22:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: Not enough memory to complete this operation</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3983029#M1136983</link>
      <description>&lt;P&gt;I did ran the PC VI simulaneously , still Acquisition loop is not working . what can be&amp;nbsp; the issue &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2019 14:44:20 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3983029#M1136983</guid>
      <dc:creator>vishal231</dc:creator>
      <dc:date>2019-10-30T14:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: Not enough memory to complete this operation</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3983040#M1136988</link>
      <description>&lt;P&gt;yeah , it did connected now , but yes i have to&amp;nbsp; learn to make a state machine&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2019 14:59:24 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3983040#M1136988</guid>
      <dc:creator>vishal231</dc:creator>
      <dc:date>2019-10-30T14:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: Not enough memory to complete this operation</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3983068#M1137003</link>
      <description>&lt;P&gt;hello crossrulz,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can i convert 2d Array waveform of data(dbl) to 1d Array waveform (dbl)?&amp;nbsp; for saving the data in th save VI running on PC&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2019 15:46:20 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3983068#M1137003</guid>
      <dc:creator>vishal231</dc:creator>
      <dc:date>2019-10-30T15:46:20Z</dc:date>
    </item>
    <item>
      <title>Re: Not enough memory to complete this operation</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3983145#M1137055</link>
      <description>&lt;P&gt;You have a loop in there you just don't need anymore.&amp;nbsp; You can read a single waveform from the Network Stream and then use a queue to send that to your consumer loop.&amp;nbsp; The Network Stream is to replace your Network Published Shared Variable.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2019 18:53:57 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3983145#M1137055</guid>
      <dc:creator>crossrulz</dc:creator>
      <dc:date>2019-10-30T18:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: Not enough memory to complete this operation</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3983318#M1137133</link>
      <description>&lt;P&gt;hello crossrulz,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thnaks for your help&lt;/P&gt;
&lt;P&gt;now i am able to collect data on Excel file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I havent made any state machine , or Queue Operation in my acquire VI running on Crio yet.&lt;/P&gt;
&lt;P&gt;But,&amp;nbsp;I have to run both the file for saving data and Monitoring the data on frontal panel&lt;/P&gt;
&lt;P&gt;Now,&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; cursor: text; font-family: inherit; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.7142; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;I want to monitor my data too, Maybe from acquire VI, but, its only possible when i start the saving VI on PC .&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; cursor: text; font-family: inherit; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1.7142; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;I need to select time from front panel to save data for that time and monitor data contineously&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2019 11:50:31 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3983318#M1137133</guid>
      <dc:creator>vishal231</dc:creator>
      <dc:date>2019-10-31T11:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: Not enough memory to complete this operation</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3983335#M1137142</link>
      <description>&lt;P&gt;hello crossrulz,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When i am reading the data from Read multiple Elements from stream from VI running on PC through probe, it is is in the Flash form , it is not continuous , I want to monitor the data from VI on pc but ist not possible properly why?&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2019 13:23:42 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3983335#M1137142</guid>
      <dc:creator>vishal231</dc:creator>
      <dc:date>2019-10-31T13:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: Not enough memory to complete this operation</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3984025#M1137448</link>
      <description>&lt;P&gt;Hello ,&lt;/P&gt;
&lt;P&gt;Thanks for help&lt;/P&gt;
&lt;P&gt;still ,I am not able to figure out how to use the state machine in my application.&lt;/P&gt;
&lt;P&gt;I did used the Queue but, I have to run bothe the VI to save data (also i have to start the save vi first and then acq VI which is acquistion VI)&lt;/P&gt;
&lt;P&gt;I Need to monitor the data on save vi and Need to save the data on that VI only through a timer&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have attched the updated VIs&lt;/P&gt;</description>
      <pubDate>Mon, 04 Nov 2019 09:08:13 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Not-enough-memory-to-complete-this-operation/m-p/3984025#M1137448</guid>
      <dc:creator>vishal231</dc:creator>
      <dc:date>2019-11-04T09:08:13Z</dc:date>
    </item>
  </channel>
</rss>

