Pagination Working, Scraping only Partial

Maybe this is too similar to the most recent pagination/scrape post, but I'm not smart enough to know the differences. I'm trying to scrape the below, and pagination sorts all the way through, but only scrapes 132 of the 702 resulting links.

Trying to figure out what I'm missing as this is the first time I've had trouble with this

Url: https://housingdirectory.ascha.com/search-result/?directory_type=general&in_loc=&cityLat=&cityLng=&zip=&zip-cityLat=&zip-cityLng=&minimum=0&miles=0&q=&since=

Sitemap:
{"_id":"AB_ASCHA_2024","startUrl":["https://housingdirectory.ascha.com/search-result/?directory_type=general&in_loc=&cityLat=&cityLng=&zip=&zip-cityLat=&zip-cityLng=&minimum=0&miles=0&q=&since="],"selectors":[{"id":"Next_Page","paginationType":"clickMore","parentSelectors":["_root","Next_Page"],"selector":".next i","type":"SelectorPagination"},{"id":"Link","linkType":"linkFromHref","multiple":false,"parentSelectors":["Next_Page"],"selector":".directorist-listing-title a","type":"SelectorLink"},{"id":"Name","multiple":false,"parentSelectors":["Link"],"regex":"","selector":"h2","type":"SelectorText"},{"id":"Type","multiple":false,"parentSelectors":["Link"],"regex":"","selector":"div.directorist-single-info-select:nth-of-type(2) div.directorist-single-info__value","type":"SelectorText"},{"id":"Units","multiple":false,"parentSelectors":["Link"],"regex":"","selector":".directorist-single-info-number div.directorist-single-info__value","type":"SelectorText"},{"id":"Address","multiple":false,"parentSelectors":["Link"],"regex":"","selector":".directorist-single-info-address div.directorist-single-info__value","type":"SelectorText"},{"id":"Postal","multiple":false,"parentSelectors":["Link"],"regex":"","selector":".directorist-single-info-zip div.directorist-single-info__value","type":"SelectorText"},{"id":"RGI","multiple":false,"parentSelectors":["Link"],"regex":"","selector":".ahd-listing-section-suite-info div:nth-of-type(3) div.directorist-single-info__value","type":"SelectorText"}]}

Hi, the Link selector has to have the Multiple option checked. Please try that