[ { "search": "// Function to lock other programs", "replace": "// Function to lock other programs\nfunction unlockPrograms() {\n var password = prompt('Enter the password to unlock the program:');\n if (password === 'freesyria') {\n alert('Program unlocked!');\n // Add your code here to unlock the program\n } else {\n alert('Incorrect password. Please try again.');\n }\n}\n" }, { "search": "// Event listener for lock button click", "replace": "// Event listener for lock button click\n document.getElementById('lock-btn').addEventListener('click', unlockPrograms);\n" } ]