FIRST

window._currentBatchIndex = 0;

SELECT

(async () => {
  const BATCH_SIZE = 100;
  window._currentBatchIndex = window._currentBatchIndex || 0;
  ...
})();

DESELECT

(() => {
  const selectedCards = document.querySelectorAll('figure[data-testid="icon-card--selected"]');
  ...
})();