Config fails to load - using default valuesSolved

Sorry to say I am no JSON expert, but I can usually find a syntax error and make reasonable customizations.  This one has got me though.

Console error reported:

(10:02:47) | Unloaded plugin No Decay v1.4.7 by 0x89A

(10:02:47) | [No Decay] Error loading config, using default values

(10:02:47) | Loaded plugin No Decay v1.4.7 by 0x

Current config file:
{
"General": {
"Disable decay for all entities": true,
"Exclude \"Other Multipliers\"": false,
"Use permission": false,
"Decay if there is no owner (if perms enabled)": false,
"Permission": "nodecay.use",
"Output": {
"Output to server console": false,
"Log to file": false,
"Log file name": "NoDecay-Log"
},
"Cupboard Settings": {
"Disable No Decay if resources placed in TC": false,
"Require Tool Cupboard": true,
"Any authed on TC": false,
"Cupboard Range": 30.0,
"Block cupboard wood": false,
"Block cupboard stone": false,
"Block cupbard metal": false,
"Block cupboard high quality": false
},
},
"Building grade multipliers": {
"Twig multiplier": 1.0,
"Wood multiplier": 0.1,
"Stone multiplier": 0.2,
"Sheet Metal multiplier": 0.4,
"Armoured multiplier": 2.0
},
"Other multipliers": {
"furnace": 0.0,
"wall.external.high.stone": 1.0,
"wall.external.high": 0.5,
"gates.external.high.stone": 1.0,
"gates.external.high.wood": 0.5,
"barricade.wood": 1.0,
"minicopter.entity": 0.0
},

Any help would be amazing, thanks!

Try this it validates (you have an extra }, on line 22 and you have an extra comma at the EOF)

{
"General": {
"Disable decay for all entities": true,
"Exclude \"Other Multipliers\"": false,
"Use permission": false,
"Decay if there is no owner (if perms enabled)": false,
"Permission": "nodecay.use",
"Output": {
"Output to server console": false,
"Log to file": false,
"Log file name": "NoDecay-Log"
},
"Cupboard Settings": {
"Disable No Decay if resources placed in TC": false,
"Require Tool Cupboard": true,
"Any authed on TC": false,
"Cupboard Range": 30.0,
"Block cupboard wood": false,
"Block cupboard stone": false,
"Block cupbard metal": false,
"Block cupboard high quality": false
},
"Building grade multipliers": {
"Twig multiplier": 1.0,
"Wood multiplier": 0.1,
"Stone multiplier": 0.2,
"Sheet Metal multiplier": 0.4,
"Armoured multiplier": 2.0
},
"Other multipliers": {
"furnace": 0.0,
"wall.external.high.stone": 1.0,
"wall.external.high": 0.5,
"gates.external.high.stone": 1.0,
"gates.external.high.wood": 0.5,
"barricade.wood": 1.0,
"minicopter.entity": 0.0
}
}
}

That's it, loads successfully.  Thank you!!

Locked automatically