verified chart of accounts
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/chart_of_accounts.py b/erpnext/accounts/doctype/account/chart_of_accounts/chart_of_accounts.py
index 6fd980e..d858026 100644
--- a/erpnext/accounts/doctype/account/chart_of_accounts/chart_of_accounts.py
+++ b/erpnext/accounts/doctype/account/chart_of_accounts/chart_of_accounts.py
@@ -63,12 +63,13 @@
 def get_chart(chart_name):
 	chart = {}
 	if chart_name == "Standard":
-		from erpnext.accounts.doctype.account.chart_of_accounts import standard_chart_of_accounts
+		from erpnext.accounts.doctype.account.chart_of_accounts.verified import standard_chart_of_accounts
 		return standard_chart_of_accounts.coa
 	else:
-		for fname in os.listdir(os.path.dirname(__file__)):
+		path = os.path.join(os.path.dirname(__file__), "verified")
+		for fname in os.listdir(path):
 			if fname.endswith(".json"):
-				with open(os.path.join(os.path.dirname(__file__), fname), "r") as f:
+				with open(os.path.join(path, fname), "r") as f:
 					chart = f.read()
 					if chart and json.loads(chart).get("name") == chart_name:
 						return json.loads(chart).get("tree")
@@ -84,9 +85,10 @@
 				charts.append(content["name"])
 
 	country_code = frappe.db.get_value("Country", country, "code")
-	for fname in os.listdir(os.path.dirname(__file__)):
+	path = os.path.join(os.path.dirname(__file__), "verified")
+	for fname in os.listdir(path):
 		if fname.startswith(country_code) and fname.endswith(".json"):
-			with open(os.path.join(os.path.dirname(__file__), fname), "r") as f:
+			with open(os.path.join(path, fname), "r") as f:
 				_get_chart_name(f.read())
 
 	countries_use_OHADA_system = ["Benin", "Burkina Faso", "Cameroon", "Central African Republic", "Comoros",
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/in_indian_chart_template_standard.json b/erpnext/accounts/doctype/account/chart_of_accounts/in_indian_chart_template_standard.json
deleted file mode 100644
index 3d1c84c..0000000
--- a/erpnext/accounts/doctype/account/chart_of_accounts/in_indian_chart_template_standard.json
+++ /dev/null
@@ -1,167 +0,0 @@
-{
-    "country_code": "in",
-    "name": "Indian Chart of Accounts - Standard",
-	"is_active": "Yes",
-    "tree": {
-        "Assets": {
-            "Current Assets": {
-                "Accounts Receivable": {
-                    "Debtors": {
-                        "account_type": "Receivable"
-                    }
-                },
-                "Bank Accounts": {},
-                "Cash In Hand": {
-                    "Cash - Payroll Checking": {
-                        "account_type": "Cash"
-                    },
-                    "Cash - Regular Checking": {
-                        "account_type": "Cash"
-                    },
-                    "Cash Account": {
-                        "account_type": "Cash"
-                    },
-                    "Petty Cash Fund": {
-                        "account_type": "Cash"
-                    }
-                },
-                "Deposit Account": {
-                    "Deposit Account": {}
-                },
-                "Inventories": {
-	                "account_type": "Stock",
-					"group_or_ledger": "Group"
-                },
-                "Other Current Assets": {
-                    "Prepaid Insurance": {}
-                },
-                "Tax Receivable": {
-                    "Excise Duty Receivable": {
-                        "Education Cess Receivable On Excise Duty": {},
-                        "Excise Duty Receivable": {},
-                        "Higher Education Cess Receivable On Excise Duty": {}
-                    },
-                    "Sales Tax Receivable": {},
-                    "Service Tax Receivable": {
-                        "Education Cess Receivable On Service Tax": {},
-                        "Higher Education Cess Receivable On Service Tax": {},
-                        "Service Tax Receivable": {}
-                    },
-                    "TDS Receivable": {},
-                    "VAT Receivable": {}
-                }
-            },
-            "Fixed Assets": {
-                "Air Conditionar": {},
-                "Buildings": {},
-                "Computer/Laptops (Assets)": {},
-                "Equipments": {},
-                "Furniture": {},
-                "Land": {},
-                "Misc Assets": {},
-                "Vehicle": {}
-            },
-			"root_type": "Asset"
-        },
-        "Liabilities": {
-            "Current Liabilities": {
-                "Accounts Payable": {
-                    "Creditors": {
-                        "account_type": "Payable"
-                    }
-                },
-                "Duties And Taxes Payable": {
-                    "Excise Duty Payable": {
-                        "Education Cess Payable On Excise Duty": {},
-                        "Excise Duty Payable": {},
-                        "Higher Education Cess Payable On Excise Duty": {}
-                    },
-                    "Sales Tax Payable": {},
-                    "Service Tax Payable": {
-                        "Education Cess Payable On Service Tax": {},
-                        "Higher Education Cess Payable On Service Tax": {},
-                        "Service Tax Payable": {}
-                    },
-                    "TDS Payable": {},
-                    "VAT Payable": {}
-                },
-                "Loan Liabilities": {
-                    "Bank OD Account": {},
-                    "Secured Loan Account": {},
-                    "Unsecured Loan Account": {}
-                },
-                "Others Payable": {
-                    "Interest Payable": {},
-                    "Notes Payable": {},
-                    "Wages Payable": {}
-                }
-            },
-            "Share Holder/Owners Fund": {
-                "Capital Account": {},
-                "Reserve And Surplus Account": {}
-            },
-			"root_type": "Liability"
-        },
-        "Expense": {
-            "Cost of Goods Sold": {
-                "Closing Stock": {},
-                "Opening Stock": {},
-                "Purchase Stock": {}
-            },
-            "Direct Expense": {
-                "Computer/Laptop Accessories": {},
-                "Electricity Expense": {},
-                "House Keeping Expense": {},
-                "Internet Expense": {},
-                "News Paper And Magazine": {},
-                "Office Rent": {},
-                "Postage And Courier Expense": {},
-                "Purchase Expense": {},
-                "Salary Expense": {},
-                "Telephone Expense": {}
-            },
-            "Indirect Expense": {
-                "Bank Charges": {
-                    "account_type": "Bank"
-                },
-                "Business Promotion": {},
-                "Diwali Bonus/Gift": {},
-                "Entertainment Expense": {},
-                "Foreign Exchange Loss": {},
-                "Other Expense": {
-                    "Sales Commission Expense": {},
-                    "Stationary Expense": {},
-                    "Travelling Expense": {}
-                },
-                "Parts Purchase": {},
-                "Professional Services": {},
-                "Repairing Expense": {}
-            },
-            "Non Operating Expenses And Loss": {
-                "Loss on Sale of Assets": {},
-                "Write Off Expense": {}
-            },
-			"root_type": "Expense"
-        },
-        "Income": {
-            "Non Operating Revenues And Gains": {
-                "Foreign Exchange Profit": {},
-                "Gain on Sale of Assets": {},
-                "Interest Revenues": {},
-                "Write off Income": {}
-            },
-            "Operating Revenues": {
-                "Sales of Goods": {
-                    "Export Sales": {},
-                    "Local Sales": {},
-                    "Retail Sales": {}
-                },
-                "Sales of Services": {
-                    "Export Services": {},
-                    "Local Services": {}
-                }
-            },
-			"root_type": "Income"
-        }
-    }
-}
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/ae_uae_chart_template_standard.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/ae_uae_chart_template_standard.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/ae_uae_chart_template_standard.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/ae_uae_chart_template_standard.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/ar_ar_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/ar_ar_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/ar_ar_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/ar_ar_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/at_austria_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/at_austria_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/at_austria_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/at_austria_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/be_l10nbe_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/be_l10nbe_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/be_l10nbe_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/be_l10nbe_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/br_l10n_br_account_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/br_l10n_br_account_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/br_l10n_br_account_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/br_l10n_br_account_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/ca_ca_en_chart_template_en.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/ca_ca_en_chart_template_en.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/ca_ca_en_chart_template_en.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/ca_ca_en_chart_template_en.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/ca_ca_fr_chart_template_fr.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/ca_ca_fr_chart_template_fr.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/ca_ca_fr_chart_template_fr.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/ca_ca_fr_chart_template_fr.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/ch_l10nch_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/ch_l10nch_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/ch_l10nch_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/ch_l10nch_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/cl_cl_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/cl_cl_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/cl_cl_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/cl_cl_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/cn_l10n_chart_china.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/cn_l10n_chart_china.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/cn_l10n_chart_china.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/cn_l10n_chart_china.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/cn_l10n_chart_china_small_business.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/cn_l10n_chart_china_small_business.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/cn_l10n_chart_china_small_business.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/cn_l10n_chart_china_small_business.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/co_vauxoo_mx_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/co_vauxoo_mx_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/co_vauxoo_mx_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/co_vauxoo_mx_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/cr_account_chart_template_0.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/cr_account_chart_template_0.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/cr_account_chart_template_0.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/cr_account_chart_template_0.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/cr_account_chart_template_x.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/cr_account_chart_template_x.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/cr_account_chart_template_x.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/cr_account_chart_template_x.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/de_l10n_chart_de_skr04.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/de_l10n_chart_de_skr04.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/de_l10n_chart_de_skr04.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/de_l10n_chart_de_skr04.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/de_l10n_de_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/de_l10n_de_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/de_l10n_de_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/de_l10n_de_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/ec_ec_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/ec_ec_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/ec_ec_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/ec_ec_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/es_account_chart_template_common.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/es_account_chart_template_common.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/es_account_chart_template_common.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/es_account_chart_template_common.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/et_l10n_et.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/et_l10n_et.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/et_l10n_et.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/et_l10n_et.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/fr_l10n_fr_pcg_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/fr_l10n_fr_pcg_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/fr_l10n_fr_pcg_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/fr_l10n_fr_pcg_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/gr_l10n_gr_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/gr_l10n_gr_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/gr_l10n_gr_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/gr_l10n_gr_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/gt_cuentas_plantilla.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/gt_cuentas_plantilla.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/gt_cuentas_plantilla.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/gt_cuentas_plantilla.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/hn_cuentas_plantilla.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/hn_cuentas_plantilla.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/hn_cuentas_plantilla.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/hn_cuentas_plantilla.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/hr_l10n_hr_chart_template_rrif.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/hr_l10n_hr_chart_template_rrif.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/hr_l10n_hr_chart_template_rrif.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/hr_l10n_hr_chart_template_rrif.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/hu_hungarian_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/hu_hungarian_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/hu_hungarian_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/hu_hungarian_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/it_l10n_it_chart_template_generic.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/it_l10n_it_chart_template_generic.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/it_l10n_it_chart_template_generic.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/it_l10n_it_chart_template_generic.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/lu_lu_2011_chart_1.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/lu_lu_2011_chart_1.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/lu_lu_2011_chart_1.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/lu_lu_2011_chart_1.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/ma_l10n_kzc_temp_chart.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/ma_l10n_kzc_temp_chart.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/ma_l10n_kzc_temp_chart.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/ma_l10n_kzc_temp_chart.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/mx_vauxoo_mx_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/mx_vauxoo_mx_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/mx_vauxoo_mx_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/mx_vauxoo_mx_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/nl_l10nnl_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/nl_l10nnl_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/nl_l10nnl_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/nl_l10nnl_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/pa_l10npa_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/pa_l10npa_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/pa_l10npa_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/pa_l10npa_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/pe_pe_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/pe_pe_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/pe_pe_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/pe_pe_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/pl_pl_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/pl_pl_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/pl_pl_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/pl_pl_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/pt_pt_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/pt_pt_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/pt_pt_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/pt_pt_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/ro_ro_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/ro_ro_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/ro_ro_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/ro_ro_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/sg_sg_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/sg_sg_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/sg_sg_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/sg_sg_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/si_gd_chart.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/si_gd_chart.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/si_gd_chart.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/si_gd_chart.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/syscohada_syscohada_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/syscohada_syscohada_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/syscohada_syscohada_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/syscohada_syscohada_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/th_chart.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/th_chart.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/th_chart.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/th_chart.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/tr_l10ntr_tek_duzen_hesap.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/tr_l10ntr_tek_duzen_hesap.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/tr_l10ntr_tek_duzen_hesap.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/tr_l10ntr_tek_duzen_hesap.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/uk_l10n_uk.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/uk_l10n_uk.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/uk_l10n_uk.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/uk_l10n_uk.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/us_account_chart_template_basic.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/us_account_chart_template_basic.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/us_account_chart_template_basic.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/us_account_chart_template_basic.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/uy_uy_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/uy_uy_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/uy_uy_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/uy_uy_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/ve_ve_chart_template_amd.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/ve_ve_chart_template_amd.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/ve_ve_chart_template_amd.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/unverified/ve_ve_chart_template_amd.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/verified/__init__.py b/erpnext/accounts/doctype/account/chart_of_accounts/verified/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/erpnext/accounts/doctype/account/chart_of_accounts/verified/__init__.py
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/ni_ni_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/verified/ni_ni_chart_template.json
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/ni_ni_chart_template.json
rename to erpnext/accounts/doctype/account/chart_of_accounts/verified/ni_ni_chart_template.json
diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/standard_chart_of_accounts.py b/erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py
similarity index 100%
rename from erpnext/accounts/doctype/account/chart_of_accounts/standard_chart_of_accounts.py
rename to erpnext/accounts/doctype/account/chart_of_accounts/verified/standard_chart_of_accounts.py