64 bytes, each byte is eight bits plus one parity bit
LRC check byte (formed by bit wise XOR ing all 64 bytes)
64 + 8 bytes would be used as 1 parity bit per byte word.
so each block would have 64 data + 9 parity bytes
LRC will tell you the block is bad, if the bit is not the parity bit on the block (big assumption.)
You could calculate empathy as you know what byte is bad, you can brute force several different bits to correct both the lrc and the byte until both matched but as a single lrc only tells you that you have a 1/256 chance of getting a combination that matches you will get a set of mathematical data that fulfills the criteria as "fixed"
If you know what type of file it is, this will improve your data recovery chances.
For instance if you know the file type is text, byte 5 is uppercase or lower case and any number not in the realm of alpha numeric & common chars could be thown out.
so yes it's technically possible to brute force data back into shape with a schema like this.
If you decide to do this, I'd recommend you start by blocking it as 50 bytes of data per 64 block. this leaves you 14 bytes of parity to implement a mathematical model on.
14/64 is close to 16/64 or 1/4 of the bytes involved in the block are just for rescue purposes.
1/4 of your data set would be lost but some stability gained.
in your example 9/71 that's about 13% of the data is used.
I've brute forced data sets like this in data recovery before, but it's impossible in most cases to determine you have been successful.
for example, if you have a file of 1 Megabytes, and say your empathy on your parity is damaged in 4 areas. It's an MP4 file, or zip file so critically impaired.
If the damage is limited to 1 bit per block and you most likely can repair the file.
if you have say 2 bits per block, you would know that 2 areas per block were damaged yielding a sequence of 8 squared to possible files. you could generate 64 files and try to unzip each, but say the damage is 3 bits per block, now you might be looking at 8 cubed.
It's possible with brute force to repair things like this and I have done so in emergencies with limited success.