data = {
const $ = cheerio.load(page)
const table = $("table").eq(1)
const rows = table.find("tr")
const result = []
for(let i = 1; i < rows.length; i = i + 1){
const row = rows.eq(i)
const cells = row.find("td")
const cell = cells.eq(1)
const image = cell.find("img")
const src = image.attr("src")
result.push(src)
}
return result.filter(d => d != undefined)
}