qrv15_0.zip
The file qrv15_0.dat has the hash "97AFF0D35593C126B9628821172B7344" while in your extension returns
"35af0c029c18a83b2a5655c1256418ba" due to the line 72 you're reading the files with utf8 encoding while the file is ANSI.
fs.readFile(path, 'utf8', function(err, data) {
change to
fs.readFile(path, function(err, data) {
it took me hours to fix it.