Terraforming mod

Hello, I am new to creating mods and I’m trying to make a mod that extends the radius of some of the buildings. Every time I try to load a save file it sits and spins. Here is the code I came up with. If anyone has an answer I would much appreciate it.

"replaceOperations": {

	"buildings/dustParticleFilter/productionLogic/terraformRadius": 200

	"buildings/fertilizerDroneHub/productionLogic/terraformRadius": 200

	"buildings/groundAcidityRegulator/productionLogic/terraformRadius": 200

	"buildings/ammoniaExtractor/productionLogic/terraformRadius": 200

},
"removeOperations": [

],

If this is you JSON syntax, there are missing comma at each end of a line (but not the last per block). Also i had this behavior one time by not having the right filename (must start by ‘patch’).

{
    "replaceOperations": {
        "buildings/dustParticleFilter/productionLogic/terraformRadius": 200,
        "buildings/fertilizerDroneHub/productionLogic/terraformRadius": 200,
        "buildings/groundAcidityRegulator/productionLogic/terraformRadius": 200,
        "buildings/ammoniaExtractor/productionLogic/terraformRadius": 200
    },
    "removeOperations": [
    ]
}

To Dev: The exported files are invalid too. :> The have trailing comma at the end of each block. Can be loaded in the game with this, but not suitable for highlighting.