You can get the static data from here
https://forums.eveonline.com/t/sde-conversion-2021201/284253
and I got the numbers from SQL via join, example for highsec:
SELECT COUNT(*),regionname,`security`,m.itemName FROM test.killdump k
INNER JOIN sdeyaml.mapdenormalize m
on k.solarSystemID = m.solarSystemID
WHERE (destroyedShipgroup IN ("Mining Barge","Exhumer")
OR destroyedShipType = 'Venture') AND regionname <> "Pochven"
and SECURITY >= 0.5
Pochven has to be excluded, because it is still with the old security listedn for example Niarja is with security 0,5 in the database.