status & 10 //False (Баг хантер)
status & 20 //True (Пасхантер)
...
bughunter: 0x10
easteregg: 0x20
$html = new simple_html_dom();
$html->load_file('https://yandex.ru/web-maps/covid19');
$json = $html->find('script.config-view', 0)->innertext;
$data = json_decode($json, true);
$russian = array_filter(
$data['covidData']['items'],
function ($el) {
return isset($el['ru']) && $el['ru'];
}
);
print_r($russian);
// Array (
// [181] => Array (
// [name] => Алтайский край
// [ru] => 1
// [cases] => 621
// [cured] => 164
// [deaths] => 3
// ...