If SelectorText (ADDRESS IN) is deleted, Webscraper extracts all events. WHY?

Hello, I'm not sure why, but if there are multiple events on a page in a category only one is extracted. I think it's the name, but I'm not sure.
EDIT:
As with the previous post Website scraping, but in the export, output is only 5 pages the error is again in SelectorLink (ADDRESS) -> SelectorText (ADDRESS IN) . If SelectorText (ADDRESS IN) is deleted, Webscraper extracts all events.

e.g. https://www.ticketstream.cz/rodina
I. Prodloužená tanečních kurzů (name) https://www.ticketstream.cz/akce/i-prodlouzena-tanecnich-kurzu-kurz-a-146844
I. Prodloužená tanečních kurzů (name) https://www.ticketstream.cz/akce/i-prodlouzena-tanecnich-kurzu-kurz-b-173491
I. Prodloužená tanečních kurzů (name) https://www.ticketstream.cz/akce/i-prodlouzena-tanecnich-kurzu-kurz-c-173493
or
Farmapark (name) https://www.ticketstream.cz/akce/farmapark-175415 (link)
Farmapark (name) https://www.ticketstream.cz/akce/farmapark-175416 (link)

Can someone help me?
Thanks.

Url: https://www.ticketstream.cz

Sitemap:
{"_id":"111TEST-LINK-ADDRESS","startUrl":["https://www.ticketstream.cz/rodina"],"selectors":[{"id":"LINK IN","linkType":"linkFromAttributes","multiple":true,"parentSelectors":["_root"],"selector":"a.tile","type":"SelectorLink"},{"id":"NAME","multiple":false,"parentSelectors":["LINK IN"],"regex":"","selector":"h1","type":"SelectorText"},{"id":"ADDRESS","linkType":"linkFromHref","multiple":false,"parentSelectors":["LINK IN"],"selector":"a.info-block.location[itemprop='url']","type":"SelectorLink"},{"id":"ADDRESS IN","multiple":false,"parentSelectors":["ADDRESS"],"regex":"","selector":"a.location","type":"SelectorText"}]}

Hi,

This happens because the scraper visits each URL only once. Since the address URL is the same in all 3 cases, only the first unique match is returned.

I noticed that the street name can be scraped from the itemprop="streetAddress" element;

image

See a reference sitemap below:

{"_id":"111TEST-LINK-ADDRESS","startUrl":["https://www.ticketstream.cz/rodina"],"selectors":[{"id":"LINK IN","linkType":"linkFromAttributes","multiple":true,"parentSelectors":["_root"],"selector":"a.tile","type":"SelectorLink"},{"id":"NAME","multiple":false,"parentSelectors":["LINK IN"],"regex":"","selector":"h1","type":"SelectorText"},{"id":"ADDRESS","multiple":false,"parentSelectors":["LINK IN"],"regex":"","selector":"a.info-block.location[itemprop='url']","type":"SelectorText"},{"extractAttribute":"content","id":"STREET","multiple":false,"parentSelectors":["LINK IN"],"selector":"[itemprop=\"streetAddress\"]","type":"SelectorElementAttribute"}]}