﻿file = r'app\Exports\PanelTestExport.php'
with open(file, 'r', encoding='utf-8', errors='replace') as f:
    lines = f.readlines()

with open('header_section.txt', 'w', encoding='utf-8') as out:
    for i in range(995, 1075):
        out.write(f"{i+1}: {lines[i].rstrip()}\n")
print("Done")
