for (const key in edited_name) {
        if (!edited_name.hasOwnProperty(key)) continue;
        name = name.replace(key, edited_name[key]);
    }