<?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: MAXScript | DialogMonitorOPS.GetWindowHandle() Issue in 2017 in 3ds Max Programming Forum</title>
    <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12378401#M13879</link>
    <description>&lt;P&gt;callback and DialogueMonitorOPS used in startup folder&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DialogueMonitorOPS is enabled and it didn't disable and unregisterNotification because it had to continue.&lt;/P&gt;&lt;P&gt;and callback too.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;callback.addscript #postExport&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 15 Nov 2023 08:49:20 GMT</pubDate>
    <dc:creator>jiyoung.shin</dc:creator>
    <dc:date>2023-11-15T08:49:20Z</dc:date>
    <item>
      <title>MAXScript | DialogMonitorOPS.GetWindowHandle() Issue in 2017</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/6682482#M13869</link>
      <description>&lt;P&gt;Can anyone confirm that "&lt;SPAN&gt;DialogMonitorOPS.GetWindowHandle&lt;/SPAN&gt;&lt;SPAN&gt;()" is actually returning a valid window handle anymore in 2017? No matter what I try, even the example in the documentation, it either doesn't return anything or returns "0P". From what I understand, if I run the code below, when I launch the "Customize User Interface" dialog, there should be some information logged to the MAXScript Listener... but there isn't! I'm also experiencing similar issues with&amp;nbsp;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;DialogMonitorOPS.GetWindowHandle&lt;/SPAN&gt;&lt;SPAN&gt;()" in other third party plugins and scripts.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;The code I am using&amp;nbsp;currently for testing is:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;DialogMonitorOPS.unRegisterNotification id:#eyeInTheSky
 
fn dmnotification =
(
    WindowHandle = DialogMonitorOPS.GetWindowHandle()
    format "Dialog Window Handle: %\n" WindowHandle
    format "Dialog Name: %\n" (UIAccessor.GetWindowText WindowHandle)
    format "Window Class Name: %\n" (UIAccessor.GetWindowClassName WindowHandle)
    format "Window Resource ID: %\n" (UIAccessor.GetWindowResourceID WindowHandle)
    format "Is Window: %\n" (UIAccessor.isWindow WindowHandle)
    format "Window DLL Filename: %\n" (UIAccessor.GetWindowDllFileName WindowHandle)
    format "Window DLL Description: %\n" (UIAccessor.GetWindowDllDescription WindowHandle)
    UIAccessor.SetWindowText WindowHandle" All Your Windows Are Belong To Us"
    format "=====================\n"
    true
)

DialogMonitorOPS.RegisterNotification dmnotification id:#eyeInTheSky
DialogMonitorOPS.Enabled = true
DialogMonitorOPS.ShowNotification()&lt;/PRE&gt;&lt;P&gt;Any help or clarification would be greatly appreciated! Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2016 14:50:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/6682482#M13869</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-11T14:50:32Z</dc:date>
    </item>
    <item>
      <title>Re: MAXScript | DialogMonitorOPS.GetWindowHandle() Issue in 2017</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/6682591#M13870</link>
      <description>&lt;P&gt;Works as expected here (2017 SP2), what servicepack version are you on?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Dialog Window Handle: 16202474P
Dialog Name: Customize User Interface
Window Class Name: Dialog
Window Resource ID: 0
Is Window: true
Window DLL Filename: C:\Program Files\Autodesk\3ds Max 2017\CustDlg.dll
Window DLL Description: 
=====================&lt;/PRE&gt;</description>
      <pubDate>Fri, 11 Nov 2016 15:34:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/6682591#M13870</guid>
      <dc:creator>Swordslayer</dc:creator>
      <dc:date>2016-11-11T15:34:04Z</dc:date>
    </item>
    <item>
      <title>Re: MAXScript | DialogMonitorOPS.GetWindowHandle() Issue in 2017</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/6682685#M13871</link>
      <description>&lt;P&gt;We're on SP3 currently. I'm going to try and see what the results are with a clean install. Perhaps some of the custom tools we have here could be interfering some how.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2016 16:06:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/6682685#M13871</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-11T16:06:02Z</dc:date>
    </item>
    <item>
      <title>Re: MAXScript | DialogMonitorOPS.GetWindowHandle() Issue in 2017</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/6682718#M13872</link>
      <description>&lt;P&gt;And there you have it! It seems something in our custom tools is causing a conflict. On to the troubleshooting! If I find the culprit, I'll be sure to post back with details.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2016 16:17:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/6682718#M13872</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-11T16:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: MAXScript | DialogMonitorOPS.GetWindowHandle() Issue in 2017</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/6682898#M13873</link>
      <description>&lt;P&gt;So, it looks like another callback we are registering on startup is interfering somehow. It seems to prevent my test callback from being called. When I disable the startup callback, everything works as expected. There's nothing complex going on with this startup callback either, so I'm a bit stumped. You are supposed to be able to register multiple notifications with DialogMonitorOPS, correct?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2016 17:21:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/6682898#M13873</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-11T17:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: MAXScript | DialogMonitorOPS.GetWindowHandle() Issue in 2017</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12375892#M13874</link>
      <description>&lt;P&gt;I can't english well &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;BR /&gt;I have same problem few years.&lt;BR /&gt;Reset ENU folder and try DialogueMonitorOPS.GetWindowHandle(), it's work.&lt;BR /&gt;but I using some callbacks in macro. it doesn't work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think it's callback event's compile order issue.&lt;BR /&gt;1. Reset ENU&lt;/P&gt;&lt;P&gt;2. run 3dsMax&lt;BR /&gt;3. run DialogueMonitorOPS script&lt;/P&gt;&lt;P&gt;4. max close&lt;BR /&gt;5. add Macro(callbacks) in usermacro folder&lt;BR /&gt;6. run 3dsMax&lt;BR /&gt;It's work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Reset ENU&lt;BR /&gt;2. add Macro(callbacks)&lt;/P&gt;&lt;P&gt;3. run Max&lt;BR /&gt;4. run DialogueMonitorOPS script&lt;BR /&gt;It doesn't work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;※ If you use ENU/script/startup/startup.ms (regardless of callback)&lt;BR /&gt;It doesn't work. never&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2023 01:44:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12375892#M13874</guid>
      <dc:creator>jiyoung.shin</dc:creator>
      <dc:date>2023-11-15T01:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: MAXScript | DialogMonitorOPS.GetWindowHandle() Issue in 2017</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12376313#M13875</link>
      <description>&lt;P&gt;DialogMonitorOPS registers notifications about pop-up windows and notifies about them when the window is already shown and activated. Therefore, there is no point in "hanging" and listening for all "pop-up" windows. This is usually used to intercept any particular window that is already ready to be shown. After that, the monitor is usually turned off.&lt;/P&gt;&lt;P&gt;Multiple callbacks can be registered at the same time, but each must be unregistered independently, not by shutting down the entire monitor.&lt;/P&gt;&lt;P&gt;You can assume that the monitor is used by another process (tool, script) that shuts it down after use. You register your notification while the other process is running. Thus, the first process disables the monitor for you before you receive the notification.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 13:29:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12376313#M13875</guid>
      <dc:creator>denisT.MaxDoctor</dc:creator>
      <dc:date>2023-11-14T13:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: MAXScript | DialogMonitorOPS.GetWindowHandle() Issue in 2017</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12376339#M13876</link>
      <description>&lt;P&gt;Now the question is what to do about it... the only solution is to find this process (the original script) and fix or kill it.&lt;/P&gt;&lt;P&gt;But for your process, kindly, instead of disabling all monitoring, just unregister your callback... At least if monitoring was already enabled at the time of your registration.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2023 13:40:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12376339#M13876</guid>
      <dc:creator>denisT.MaxDoctor</dc:creator>
      <dc:date>2023-11-14T13:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: MAXScript | DialogMonitorOPS.GetWindowHandle() Issue in 2017</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12377884#M13877</link>
      <description>&lt;P&gt;Thank you for your answer.&lt;/P&gt;&lt;P&gt;Bad new is that, if you used 'ENU/script/startup/' even once&lt;/P&gt;&lt;P&gt;the only way to use DialogueMonitorOPS is reset ENU folder.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2023 02:05:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12377884#M13877</guid>
      <dc:creator>jiyoung.shin</dc:creator>
      <dc:date>2023-11-15T02:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: MAXScript | DialogMonitorOPS.GetWindowHandle() Issue in 2017</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12378101#M13878</link>
      <description>&lt;P&gt;Have you found who sets the monitor before you?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2023 05:31:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12378101#M13878</guid>
      <dc:creator>denisT.MaxDoctor</dc:creator>
      <dc:date>2023-11-15T05:31:42Z</dc:date>
    </item>
    <item>
      <title>Re: MAXScript | DialogMonitorOPS.GetWindowHandle() Issue in 2017</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12378401#M13879</link>
      <description>&lt;P&gt;callback and DialogueMonitorOPS used in startup folder&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DialogueMonitorOPS is enabled and it didn't disable and unregisterNotification because it had to continue.&lt;/P&gt;&lt;P&gt;and callback too.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;callback.addscript #postExport&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2023 08:49:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12378401#M13879</guid>
      <dc:creator>jiyoung.shin</dc:creator>
      <dc:date>2023-11-15T08:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: MAXScript | DialogMonitorOPS.GetWindowHandle() Issue in 2017</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12380444#M13880</link>
      <description>&lt;P&gt;I learn callback scope, so I solved the problem.&lt;/P&gt;&lt;P&gt;I temporarily stopped callback and DialogueMonitorOPS being used in startup folder, ran DialogueMonitorOPS (I want) and then activate them again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help, I learned from it&lt;/P&gt;&lt;P&gt;Thank you!!!&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2023 02:17:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12380444#M13880</guid>
      <dc:creator>jiyoung.shin</dc:creator>
      <dc:date>2023-11-16T02:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: MAXScript | DialogMonitorOPS.GetWindowHandle() Issue in 2017</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12380722#M13881</link>
      <description>&lt;P&gt;How do you stop the callback from startup? Probably by unregistering by id…&lt;BR /&gt;but how do you know the id?&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2023 05:56:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12380722#M13881</guid>
      <dc:creator>denisT.MaxDoctor</dc:creator>
      <dc:date>2023-11-16T05:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: MAXScript | DialogMonitorOPS.GetWindowHandle() Issue in 2017</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12380760#M13882</link>
      <description>&lt;P&gt;yes, I set id, and remove callback.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Scripts in startup folder were created by other people.&lt;/P&gt;&lt;P&gt;I didn't know about callbacks until now.&lt;/P&gt;&lt;P&gt;I was able to learn about event callback scope at this time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but I knew a little bit about scope and I had create feature to back up a previous state and revert that.&lt;/P&gt;&lt;P&gt;so I read DialogMonitorOPS and callback manual several times and try it again.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2023 06:51:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12380760#M13882</guid>
      <dc:creator>jiyoung.shin</dc:creator>
      <dc:date>2023-11-16T06:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: MAXScript | DialogMonitorOPS.GetWindowHandle() Issue in 2017</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12381429#M13883</link>
      <description>&lt;P&gt;It's not a universal solution... because it cannot be automated.&lt;/P&gt;&lt;P&gt;MXS does not provide methods to retrieve the list of registered notifications, their IDs and status.&lt;/P&gt;&lt;P&gt;there is &lt;STRONG&gt;DialogMonitorOPS.ShowNotification()&lt;/STRONG&gt;... but as I know it can't return the list into a variable&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2023 12:52:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12381429#M13883</guid>
      <dc:creator>denisT.MaxDoctor</dc:creator>
      <dc:date>2023-11-16T12:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: MAXScript | DialogMonitorOPS.GetWindowHandle() Issue in 2017</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12381499#M13884</link>
      <description>&lt;P&gt;yes, I think so too, but for now I got results what I want.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used another DialogMonitorOPS in Macroscript.&lt;/P&gt;&lt;P&gt;Having to change settings with multiple clicks each time is very tiring task.&lt;/P&gt;&lt;P&gt;so I wanted rollout button click to change viewport configuration settings.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm still studing Maxscript now, I don't know how I get a function in another file for macroscript.&lt;BR /&gt;(Today I learn include and filein's different, but I don't know)&lt;/P&gt;&lt;P&gt;I'm not comfortable with copy and paste function code into a macro to redeclare the callback.&lt;BR /&gt;I think this is the limit of my current skills now.&lt;/P&gt;&lt;P&gt;Do you have any advide for me? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2023 13:25:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12381499#M13884</guid>
      <dc:creator>jiyoung.shin</dc:creator>
      <dc:date>2023-11-16T13:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: MAXScript | DialogMonitorOPS.GetWindowHandle() Issue in 2017</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12381540#M13885</link>
      <description>&lt;P&gt;open a new topic with your last post...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this seems like a different subject, and there's no point in continuing someone else's topic.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2023 13:40:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12381540#M13885</guid>
      <dc:creator>denisT.MaxDoctor</dc:creator>
      <dc:date>2023-11-16T13:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: MAXScript | DialogMonitorOPS.GetWindowHandle() Issue in 2017</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12381553#M13886</link>
      <description>&lt;P&gt;I agree, I was just trying to explain my situation.&lt;/P&gt;&lt;P&gt;Thank you for your help again.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2023 13:44:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/maxscript-dialogmonitorops-getwindowhandle-issue-in-2017/m-p/12381553#M13886</guid>
      <dc:creator>jiyoung.shin</dc:creator>
      <dc:date>2023-11-16T13:44:29Z</dc:date>
    </item>
  </channel>
</rss>

