const sections = sectionHeader.map((section) => {
    const chunkIdx = chunks.findIndex((chunk) => {
      return chunk.address <= section.sh_offset && (chunk.address + chunk.size) > section.sh_offset;
    });