<?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: Create a dashboard with timepicker for a field with date/time in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667217#M228891</link>
    <description>&lt;P&gt;Hey ITWhisperer&lt;BR /&gt;as my results come from an index summary, would i need to have a separate timepicker to get the index summary date?&lt;/P&gt;&lt;P&gt;or can i also use timepicker=_time?&lt;/P&gt;</description>
    <pubDate>Thu, 02 Nov 2023 16:38:58 GMT</pubDate>
    <dc:creator>ssaenger</dc:creator>
    <dc:date>2023-11-02T16:38:58Z</dc:date>
    <item>
      <title>Create a dashboard with timepicker for a field with date/time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667209#M228889</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have a search query that allows me to pull results from an index summary.&lt;BR /&gt;One of the fields is a time/date field.&lt;/P&gt;&lt;P&gt;The data is pull from a database and is a schedule so the time in this field is not the indexed field.&lt;/P&gt;&lt;P&gt;I would like to search on the time field and have the below query which allows me to do this.&lt;/P&gt;&lt;P&gt;However i would like to move this into a dashboard and have a timepicker.&lt;/P&gt;&lt;P&gt;Is this possible to do this?&lt;/P&gt;&lt;P&gt;I need to have a time picker to grab the correct index summary data, then again for the field.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;index=summary sourcetype=prod source=service&lt;BR /&gt;DESCR="Central Extra"&lt;BR /&gt;| dedup SI_START,NAME,DESCR | eval sTime=strptime(SI_START,"%Y-%m-%d %H:%M:%S")&lt;BR /&gt;| sort 0 -sTime&lt;BR /&gt;| eval eventday=strptime(SI_START,"%Y-%m-%d %H:%M:%S")&lt;BR /&gt;| bucket eventday span=1d&lt;/P&gt;&lt;P&gt;| eval eventday=strftime(eventday,"%Y-%m-%d")&lt;/P&gt;&lt;P&gt;| eval eventday1=strptime(eventday,"%Y-%m-%d")&lt;BR /&gt;| eval min_Date=strptime("2023-10-11","%Y-%m-%d")&lt;BR /&gt;| eval max_Date=strptime("2023-10-14","%Y-%m-%d")&lt;BR /&gt;| where (eventday1 &amp;gt;= min_Date AND eventday1 &amp;lt; max_Date)&lt;/P&gt;&lt;P&gt;| eval record=substr(CODE, -14, 1)&lt;BR /&gt;| eval record=case(record==1,"YES", record==0,"NO")&lt;/P&gt;&lt;P&gt;| stats&lt;BR /&gt;count(eval(record="YES")) as events_record&lt;BR /&gt;count(record) as events&lt;BR /&gt;by NAME&lt;BR /&gt;| eval percentage_record=(events/events_record)*100&lt;BR /&gt;| fillnull value=0 percentage_record&lt;BR /&gt;| search percentage_record&amp;lt;100&lt;BR /&gt;| sort +percentage_record -events&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Nov 2023 16:06:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667209#M228889</guid>
      <dc:creator>ssaenger</dc:creator>
      <dc:date>2023-11-02T16:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dashboard with timepicker for a field with date/time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667212#M228890</link>
      <description>&lt;P&gt;Assuming your timepicker is called timepicker and you want to use sTime to filter your events, try something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=summary sourcetype=prod source=service
DESCR="Central Extra"
| dedup SI_START,NAME,DESCR | eval sTime=strptime(SI_START,"%Y-%m-%d %H:%M:%S")
| where relative_time(now(),$timepicker.earliest$) &amp;lt;= sTime AND relative_time(now(),$timepicker.latest$) &amp;gt; sTime&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 02 Nov 2023 16:20:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667212#M228890</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-11-02T16:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dashboard with timepicker for a field with date/time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667217#M228891</link>
      <description>&lt;P&gt;Hey ITWhisperer&lt;BR /&gt;as my results come from an index summary, would i need to have a separate timepicker to get the index summary date?&lt;/P&gt;&lt;P&gt;or can i also use timepicker=_time?&lt;/P&gt;</description>
      <pubDate>Thu, 02 Nov 2023 16:38:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667217#M228891</guid>
      <dc:creator>ssaenger</dc:creator>
      <dc:date>2023-11-02T16:38:58Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dashboard with timepicker for a field with date/time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667219#M228892</link>
      <description>&lt;P&gt;I am not sure what you mean, you can use the same timepicker if you want, it depends on how you want your dashboard to work.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Nov 2023 16:41:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667219#M228892</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-11-02T16:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dashboard with timepicker for a field with date/time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667529#M228999</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have tried your solution and for relative time and i dont get any results if i use it within a dash board, I only get the earliest_time when selecting Last xxxx eg last 30days.&lt;BR /&gt;I wanted to see what it looked like so ran&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults |eval timeTokenearliest="$time.earliest$" |eval timeTokenlatest="$time.latest$" |eval gap=timeTokenlatest-timeTokenearliest   
            |eval reltimeearl = relative_time(now(),"$time.earliest$")
            |eval reltimelate = relative_time(now(),"$time.latest$")
            |table _time reltimeearl reltimelate &lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;I have tried to use,&amp;nbsp;&lt;A href="https://www.youtube.com/watch?v=OzEb7Q-fuXs&amp;amp;t=649s," target="_blank"&gt;https://www.youtube.com/watch?v=OzEb7Q-fuXs&amp;amp;t=649s,&lt;/A&gt;&amp;nbsp;however i have found that the dashboard does not like the following eval statement;&lt;/P&gt;&lt;P&gt;I get the reult of NaN&lt;/P&gt;&lt;P&gt;the %z in the strptime is now not valid!!&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;progress&amp;gt;
      &amp;lt;eval token="toearliest"&amp;gt;strptime("$job.earliestTime$","%Y-%m-%dT%H:%M:%S.%3N+%z")&amp;lt;/eval&amp;gt;
      &amp;lt;eval token="tolatest"&amp;gt;strptime("$job.latestTime$","%Y-%m-%dT%H:%M:%S.%3N+%Z")&amp;lt;/eval&amp;gt;
      &amp;lt;eval token="tokgap"&amp;gt;&amp;lt;/eval&amp;gt;(($job.latestTime$-$job.earliestTime$)/86400)
      &amp;lt;set token="jobearliest"&amp;gt;$job.earliestTime$&amp;lt;/set&amp;gt;
      &amp;lt;set token="joblatest"&amp;gt;$job.latestTime$&amp;lt;/set&amp;gt;
    &amp;lt;/progress&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;Has anybody else encountered this issue and found a solution?&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2023 13:41:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667529#M228999</guid>
      <dc:creator>ssaenger</dc:creator>
      <dc:date>2023-11-06T13:41:31Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dashboard with timepicker for a field with date/time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667537#M229004</link>
      <description>&lt;P&gt;Which version of Splunk are you using?&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2023 14:08:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667537#M229004</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-11-06T14:08:52Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dashboard with timepicker for a field with date/time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667540#M229006</link>
      <description>&lt;H4&gt;Splunk Enterprise&lt;/H4&gt;&lt;P&gt;Version:8.2.6&lt;/P&gt;&lt;P&gt;Build:a6fe1ee8894b&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2023 14:15:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667540#M229006</guid>
      <dc:creator>ssaenger</dc:creator>
      <dc:date>2023-11-06T14:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dashboard with timepicker for a field with date/time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667548#M229008</link>
      <description>&lt;P&gt;If I recall correctly, I had issues with earlier versions of Splunk, however, I am unable to reproduce any errors at the moment. Please share your dashboard source code in a code block &amp;lt;/&amp;gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2023 14:48:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667548#M229008</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-11-06T14:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dashboard with timepicker for a field with date/time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667552#M229010</link>
      <description>&lt;P&gt;This is some experimenting I have done following the youtube video above.&lt;BR /&gt;There is some other work as i would like to get the gap between any date ranges to be used in an average calculation, once i have this timepicker issue sorted.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;SO-testing&amp;lt;/label&amp;gt;
  &amp;lt;search&amp;gt;
    &amp;lt;query&amp;gt;|makeresults&amp;lt;/query&amp;gt;
    &amp;lt;earliest&amp;gt;$time.earliest$&amp;lt;/earliest&amp;gt;
    &amp;lt;latest&amp;gt;$time.latest$&amp;lt;/latest&amp;gt;
    &amp;lt;progress&amp;gt;
      &amp;lt;eval token="toearliest"&amp;gt;strptime("$job.earliestTime$","%Y-%m-%dT%H:%M:%S.%3N+%z")&amp;lt;/eval&amp;gt;
      &amp;lt;eval token="tolatest"&amp;gt;strptime("$job.latestTime$","%Y-%m-%dT%H:%M:%S.%3N+%Z")&amp;lt;/eval&amp;gt;
      &amp;lt;eval token="tokgap"&amp;gt;&amp;lt;/eval&amp;gt;(($job.latestTime$-$job.earliestTime$)/86400)
      &amp;lt;set token="jobearliest"&amp;gt;$job.earliestTime$&amp;lt;/set&amp;gt;
      &amp;lt;set token="joblatest"&amp;gt;$job.latestTime$&amp;lt;/set&amp;gt;
    &amp;lt;/progress&amp;gt;
  &amp;lt;/search&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="time" token="time"&amp;gt;
      &amp;lt;label&amp;gt;timepicker&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;
        &amp;lt;earliest&amp;gt;-48h@h&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
      &amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;

  &amp;lt;/row&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;title&amp;gt;token values&amp;lt;/title&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;
            | makeresults |eval timeTokenearliest="$time.earliest$" |eval timeTokenlatest="$time.latest$" |eval gap=timeTokenlatest-timeTokenearliest   
            |eval jobearliest = "$jobearliest$"
            |eval joblatest = "$joblatest$"
            |eval toearliest ="$toearliest$"
            |eval tolatest ="$tolatest$"
            |eval gapday = tostring(gap,"duration")
            |eval gapday1 = gap/86400 
            |eval reltimeearl = relative_time(now(),"$time.earliest$")
            |eval reltimelate = relative_time(now(),"$time.latest$")
            |table _time reltimeearl reltimelate timeTokenearliest timeTokenlatest gap gapday gapday1 tokgap jobearliest joblatest toearliest tolatest
          &amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$time.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$time.latest$&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2023 14:58:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667552#M229010</guid>
      <dc:creator>ssaenger</dc:creator>
      <dc:date>2023-11-06T14:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dashboard with timepicker for a field with date/time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667558#M229012</link>
      <description>&lt;P&gt;The relative_time function doesn't appear to work with the string "now" so change this line to compensate&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;|eval reltimelate = if("$time.latest$"=="now",now(),relative_time(now(),"$time.latest$"))&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 06 Nov 2023 15:17:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667558#M229012</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-11-06T15:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dashboard with timepicker for a field with date/time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667563#M229016</link>
      <description>&lt;P&gt;interestingly this works if i use the Last xxx option in presets, but nothing is shown when using a between option.&lt;BR /&gt;The data from the token in the 'process' section does always give a time;&lt;BR /&gt;&lt;SPAN&gt;2023-10-02T00:00:00.000+00:00&lt;/SPAN&gt;&lt;BR /&gt;however, i cannot convert this to Epoch...&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2023 15:42:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667563#M229016</guid>
      <dc:creator>ssaenger</dc:creator>
      <dc:date>2023-11-06T15:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dashboard with timepicker for a field with date/time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667567#M229020</link>
      <description>&lt;LI-CODE lang="markup"&gt;|eval reltimeearl = if(isnum($time.earliest$),$time.earliest$,relative_time(now(),"$time.earliest$"))
|eval reltimelate = if(isnum($time.latest$),$time.latest$,if("$time.latest$"=="now",now(),relative_time(now(),"$time.latest$")))&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 06 Nov 2023 15:54:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667567#M229020</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-11-06T15:54:42Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dashboard with timepicker for a field with date/time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667695#M229057</link>
      <description>&lt;P&gt;Great that works when using between - but not for Last XXX, i get this error;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;Error in 'eval' command: The expression is malformed. Expected ).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;Could you please explain why this works.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;This is OK, as ideally i would like to only have the option on the time picker of DATE RANGE -- BETWEEN.&lt;BR /&gt;&lt;BR /&gt;I think i need to make a css file for this to work - do you know if its possible to do this without css?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Nov 2023 14:34:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667695#M229057</guid>
      <dc:creator>ssaenger</dc:creator>
      <dc:date>2023-11-07T14:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dashboard with timepicker for a field with date/time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667836#M229128</link>
      <description>&lt;P&gt;HI ITWhisperer,&lt;BR /&gt;&lt;BR /&gt;I have used the statement you gave and it works well and have used it to get the gap between the days as i wish to use this in an average&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;  |eval reltimeearl = if(isnum(1698796800),1698796800,relative_time(now(),"1698796800"))
 |eval reltimelate = if(isnum(1699056000),1699056000,if("1699056000"=="now",now(),relative_time(now(),"1699056000")))

  | where sTime&amp;gt;reltimeearl AND sTime&amp;lt;=reltimelate
 |eval relgap=(tonumber(reltimelate-reltimeearl)/86400)
 | stats sum(Percentage_Rec) as Rec1 by description key

 | eval Av_Rec=(Rec1/relgap)
| table description Rec1&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;This does not work as the relgap is not processed.&lt;BR /&gt;Looking at the fields when in Verbose mode - i can see a count against this value.&lt;BR /&gt;As a test i did dedup relgap so the count=1.&lt;BR /&gt;However this still does not pass to the eval statement.&lt;/P&gt;&lt;P&gt;Can you see why?&amp;nbsp;&lt;/P&gt;&lt;P&gt;just using a value of 3 works...&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;eval Av_Rec=(Rec1/3)&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 08 Nov 2023 09:58:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667836#M229128</guid>
      <dc:creator>ssaenger</dc:creator>
      <dc:date>2023-11-08T09:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dashboard with timepicker for a field with date/time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667843#M229131</link>
      <description>&lt;P&gt;solved it by adding relgap to the end of the stats command&lt;/P&gt;&lt;LI-CODE lang="markup"&gt; | stats sum(Percentage_Rec) as Rec1 by description key relgap&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 08 Nov 2023 10:57:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Create-a-dashboard-with-timepicker-for-a-field-with-date-time/m-p/667843#M229131</guid>
      <dc:creator>ssaenger</dc:creator>
      <dc:date>2023-11-08T10:57:13Z</dc:date>
    </item>
  </channel>
</rss>

